2025-07-08 14:37:03 -07:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
2025-11-27 07:24:41 +00:00
|
|
|
{% block head_extras %}
|
2025-12-18 12:55:01 -08:00
|
|
|
<link rel="stylesheet" href="{{ settings.root_path }}/portal-table.css">
|
2025-11-27 07:24:41 +00:00
|
|
|
<script type="module" src="{{ settings.root_path }}/js_dist/table-viewer.webc.mjs"></script>
|
|
|
|
|
<script type="module" src="{{ settings.root_path }}/js_dist/filter-menu.webc.mjs"></script>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block main %}
|
2025-08-04 13:59:42 -07:00
|
|
|
<div class="page-grid">
|
2025-09-08 15:56:57 -07:00
|
|
|
<div class="page-grid__toolbar">
|
2025-10-01 22:36:19 -07:00
|
|
|
<div class="page-grid__toolbar-utilities">
|
2025-12-18 12:55:01 -08:00
|
|
|
<a class="button button--secondary" href="settings" role="button">
|
2025-11-13 02:59:00 +00:00
|
|
|
Portal Settings
|
2025-10-01 22:36:19 -07:00
|
|
|
</a>
|
2025-10-07 06:23:50 +00:00
|
|
|
<filter-menu
|
|
|
|
|
identifier-hints="{{ attr_names | json }}"
|
|
|
|
|
initial-value="{{ filter | json }}"
|
|
|
|
|
></filter-menu>
|
2025-10-01 22:36:19 -07:00
|
|
|
</div>
|
2025-11-01 00:17:07 +00:00
|
|
|
{% include "toolbar_user.html" %}
|
2025-09-08 15:56:57 -07:00
|
|
|
</div>
|
2025-08-04 13:59:42 -07:00
|
|
|
<div class="page-grid__sidebar">
|
2025-09-25 14:51:09 -07:00
|
|
|
<div style="padding: 1rem;">
|
|
|
|
|
{{ navbar | safe }}
|
|
|
|
|
</div>
|
2025-08-04 13:59:42 -07:00
|
|
|
</div>
|
|
|
|
|
<main class="page-grid__main">
|
2025-10-07 06:23:50 +00:00
|
|
|
<table-viewer columns="{{ columns | json }}"></table-viewer>
|
2025-08-04 13:59:42 -07:00
|
|
|
</main>
|
|
|
|
|
</div>
|
2025-07-08 14:37:03 -07:00
|
|
|
{% endblock %}
|