Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
SOD/views/admin/index.pug

37 lines
1.4 KiB
Text
Raw Normal View History

2020-08-17 19:04:50 +02:00
extends ../layout
2020-08-17 13:22:52 +02:00
block content
2020-09-28 22:35:00 +02:00
div.container
h4=__("admin.title")
div.row.center
div.col
div.card.blue-grey
div.card-content.white-text
span.card-title=__("admin.ordersManagement")
p
div.card-action
a(href="/admin/orders/date")=__("admin.ordersDate")
a(href="/admin/orders")=__("admin.manageOrders")
2020-08-17 13:22:52 +02:00
2020-09-28 22:35:00 +02:00
div.col
div.card.blue-grey
div.card-content.white-text
span.card-title=__("admin.sandwichManagement")
p
div.card-action
a(href="/admin/sandwiches")=__("admin.manageSandwiches")
div.col
div.card.blue-grey
div.card-content.white-text
span.card-title=__("admin.departmentsManagement")
p
div.card-action
a(href="/admin/departments")=__("admin.manageDepartments")
div.col
div.card.blue-grey
div.card-content.white-text
span.card-title=__("admin.userManagement")
p
div.card-action
a(href="/admin/users")=__("admin.manageUsers")