backend/views/categories/listCategories.pug

21 lines
487 B
Plaintext
Raw Normal View History

2023-12-19 09:12:42 +01:00
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}`) ###