You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
{% extends "main.html" %}
|
|
|
|
{% block title %} Audit Log {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Audit Log (Coming soon)</h1>
|
|
|
|
<form action="/history" hx-get="/history" hx-trigger="change" hx-target="#items">
|
|
<div class="grid">
|
|
<fieldset>
|
|
<label for="start-date">Start Date</label>
|
|
<input type="date" id="start-date" name="start-date" value="{{ start_date }}" />
|
|
</fieldset>
|
|
<fieldset>
|
|
<label for="start-time">Start Time</label>
|
|
<input type="time" id="start-time" name="start-time" value="{{ start_time }}"/>
|
|
<small>Timezone {{ time_zone }}</small>
|
|
</fieldset>
|
|
</div>
|
|
|
|
<div class="grid">
|
|
<fieldset>
|
|
<label for="end-date">End Date</label>
|
|
<input type="date" id="end-date" name="end-date" value="{{ end_date }}"/>
|
|
</fieldset>
|
|
<fieldset>
|
|
<label for="end-time">End Time</label>
|
|
<input type="time" id="end-time" name="end-time" value="{{ end_time }}"/>
|
|
<small>Timezone {{ time_zone }}</small>
|
|
</fieldset>
|
|
</div>
|
|
</form>
|
|
|
|
<div id="items" class="container">
|
|
{% include "history_item_fragment.html" %}
|
|
</div>
|
|
|
|
{% endblock %} |