devbug/app/views/dash_v1/view.pug

21 lines
576 B
Plaintext
Raw Normal View History

2019-06-22 17:51:29 +00:00
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
2019-06-21 22:01:34 +00:00
tr
2019-06-22 17:51:29 +00:00
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
2019-06-23 17:17:35 +00:00
a.action(href='/dash/v1/out/delete/'+out.id+'/'+project.id) Delete