25 lines
1,021 B
Text
25 lines
1,021 B
Text
extends admin-layout
|
|
|
|
block content
|
|
div(class="row")
|
|
include ./admin-sidebar.jade
|
|
|
|
div(class="col-sm-10 col-sm-offset-2 main")
|
|
h1(class="page-header") Photos
|
|
|
|
include ./admin-messages.jade
|
|
|
|
table(class="table table-striped")
|
|
each photo in photos
|
|
tr
|
|
td: a(href="/admin/photo/view/#{photo.get('uuid')}") #{photo.get('title')}
|
|
td #{photo.getShortDate()}
|
|
td #{photo.get('uuid')}
|
|
td
|
|
a(href="/admin/photo/edit/#{photo.get('uuid')}") Edit
|
|
| -
|
|
a(href="/admin/photo/delete/#{photo.get('uuid')}") Delete
|
|
| -
|
|
a(href="/admin/photo/build/#{photo.get('uuid')}") Build
|
|
| -
|
|
a(href="/admin/photo/upload/#{photo.get('uuid')}") Upload
|