17 lines
655 B
HTML
17 lines
655 B
HTML
{% extends "base.xhtml" %}
|
|
{% from "macros/page-hero.xhtml" import page_hero %}
|
|
{% block content %}
|
|
{{ page_hero("Admin", "Options", "Project settings from config.py. Values saved here override .env/config defaults.") }}
|
|
<div class="dashboard-page">
|
|
<section class="dashboard-panel">
|
|
<form id="admin-options-form" class="form-modern">
|
|
<div id="admin-options-fields" class="schema-grid"></div>
|
|
<div class="form-actions form-actions-start" style="margin-top:1rem">
|
|
<button type="submit">Save options</button>
|
|
</div>
|
|
</form>
|
|
<pre id="admin-options-output" class="form-output"></pre>
|
|
</section>
|
|
</div>
|
|
{% endblock %}
|