Bug fixes
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
@section('main-content')
|
||||
<div class="row">
|
||||
<div class="col-4">
|
||||
<a href="{{ url('p/view',$o->id) }}">{!! $o->getHtmlImageURL() !!}</a>
|
||||
<a href="{{ url('v/view',$o->id) }}">{!! $o->getHtmlImageURL() !!}</a>
|
||||
|
||||
<span class="pagination justify-content-center">
|
||||
<nav>
|
||||
|
@@ -29,7 +29,7 @@
|
||||
|
||||
<!-- /.card-body -->
|
||||
<div class="card-body">
|
||||
<a href="{{ url('v/view',$o->id) }}" target="{{ $o->id }}">{!! $o->getHtmlImageURL() !!}</a>
|
||||
{!! $o->getHtmlImageURL() !!}
|
||||
</div>
|
||||
|
||||
<!-- /.card-body -->
|
||||
|
@@ -11,7 +11,7 @@
|
||||
<span class="progress-description">
|
||||
<table class="table table-borderless table-sm small">
|
||||
<tr><td>To Scan</td><td>{{ \App\Models\Photo::NotScanned()->count() }}</td></tr>
|
||||
<tr><td>Duplicate</td><td>{{ \App\Models\Photo::where('duplicate',TRUE)->count() }}</td></tr>
|
||||
<tr><td>Duplicate</td><td>{{ \App\Models\Photo::Duplicates()->count() }}</td></tr>
|
||||
<tr><td>To Delete</td><td>{{ \App\Models\Photo::where('remove',TRUE)->count() }}</td></tr>
|
||||
</table>
|
||||
</span>
|
||||
@@ -34,7 +34,7 @@
|
||||
<span class="progress-description">
|
||||
<table class="table table-borderless table-sm small">
|
||||
<tr><td>To Scan</td><td>{{ \App\Models\Video::NotScanned()->count() }}</td></tr>
|
||||
<tr><td>Duplicate</td><td>{{ \App\Models\Video::where('duplicate',TRUE)->count() }}</td></tr>
|
||||
<tr><td>Duplicate</td><td>{{ \App\Models\Video::Duplicates()->count() }}</td></tr>
|
||||
<tr><td>To Delete</td><td>{{ \App\Models\Video::where('remove',TRUE)->count() }}</td></tr>
|
||||
</table>
|
||||
</span>
|
||||
|
Reference in New Issue
Block a user