25 lines
944 B
Text
25 lines
944 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 #{photo.id}
|
|
td: a(href="/admin/photo/view/#{photo.id}") #{photo.title}
|
|
td #{photo.dateString}
|
|
td
|
|
a(href="/admin/photo/edit/#{photo.id}") Edit
|
|
| -
|
|
a(href="/admin/photo/delete/#{photo.id}") Delete
|
|
| -
|
|
a(href="/admin/photo/rebuild/#{photo.id}") Rebuild
|
|
| -
|
|
a(href="/admin/photo/publish/#{photo.id}") Publish
|