devbug/app/views/dash_v1/view.pug
2019-06-23 12:17:35 -05:00

21 lines
576 B
Plaintext

extends ./template
block content
h3 Project API Key: #{project.uuid}
table
thead
tr
th(scope='col' style='min-width: 250px') Brief
th(scope='col' style='min-width: 250px') Created On
th(scope='col') Actions
tbody
each out in outs
tr
td #{out.brief}
td #{ out.created.toLocaleString({timeZone: 'America/Chicago'}) }
td
ul(style='list-style-type: none; margin: 0; padding: 0;')
li
a.action(href='/dash/v1/out/view/'+out.id) View
li
a.action(href='/dash/v1/out/delete/'+out.id+'/'+project.id) Delete