21 lines
487 B
Plaintext
21 lines
487 B
Plaintext
extends ./categories.pug
|
|
|
|
block content
|
|
table
|
|
thead
|
|
th.center ID
|
|
th Name
|
|
th Description
|
|
th Transactions
|
|
th Modify Category
|
|
tbody
|
|
each category in categories
|
|
tr
|
|
td=category.CategoryID
|
|
td=category.Name
|
|
td=category.Description
|
|
td
|
|
a(href=`/transactions/cat/${category.CategoryID}`) Transactions by Category
|
|
td
|
|
a(href=`/categories/ModifyCategory/${category.CategoryID}`) ###
|