.mx-auto.w-90p.py-6(class="sm:px-6 lg:px-8 md:max-w-7xl")
h1.text-3xl.font-bold(class="dark:text-white") Reports
.grid.grid-cols-6.mt-3
div
admin-sidebar
section#tables.col-span-5
input#notResolved.form-check-input.h-4.w-4.border.border-gray-300.rounded-sm.bg-white.transition.duration-200.mt-1.align-top.bg-no-repeat.bg-center.bg-contain.float-left.mr-2.cursor-pointer(
class="checked:bg-blue-600 checked:border-blue-600 focus:outline-none"
type="checkbox"
name="notResolved"
v-model="notResolved"
@change="filter"
)
label.form-check-label.inline-block.text-gray-800(for="notResolved")
| Show only not resolved reports
v-table(
:keys="['id', 'model_id', 'created', 'updated', 'user', 'resolved', 'note', 'admin_note']"
:fields="warnings"
)
pagination(:page="page" :pages="pages" v-if="count" path="/admin/reports")