mirror of
https://github.com/zyphlar/doorlock.git
synced 2024-04-03 21:36:03 +00:00
23 lines
532 B
Plaintext
23 lines
532 B
Plaintext
|
|
extends ./layout.pug
|
|
|
|
block title
|
|
| Cards
|
|
|
|
block content
|
|
a.button.button-sm.fr(href='/update')
|
|
i.fas.fa-sync.mr-sm
|
|
| Update
|
|
h1.page-heading
|
|
| Cards
|
|
table.collapse.w-100
|
|
thead
|
|
tr
|
|
th.px-md.py-sm.bb.bc-gray-lighter.gray-light.fw-1 Member Name
|
|
th.px-md.py-sm.bb.bc-gray-lighter.gray-light.fw-1 RFID Card Number
|
|
tbody
|
|
for card in cards
|
|
tr.hov-bg-gray-lightest
|
|
td.px-md.py-sm.bb.bc-gray-lighter= card.name
|
|
td.px-md.py-sm.bb.bc-gray-lighter= card.number
|