20 lines
No EOL
736 B
HTML
20 lines
No EOL
736 B
HTML
<!-- templates/user.html -->
|
|
{% extends "layout.html" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{{ breadcrumbs.breadcrumb_header(
|
|
title=title,
|
|
) }}
|
|
|
|
<div class="container">
|
|
<h1 class="display-1 text-center">Search Categories</h1>
|
|
<div class="row text-center m-5">
|
|
{{ links.category_link(endpoint = 'search', label = 'Inventory', icon_html = icons.laptop, arguments = {'category': 'inventory'}) }}
|
|
{{ links.category_link(endpoint = 'search', label = 'Users', icon_html = icons.user, arguments = {'category': 'users'}) }}
|
|
{{ links.category_link(endpoint = 'search', label = 'Work Logs', icon_html = icons.log, arguments = {'category': 'logs'}) }}
|
|
</div>
|
|
</div>
|
|
{% endblock %} |