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.
38 lines
1.5 KiB
38 lines
1.5 KiB
{% extends "main.html" %}
|
|
|
|
{% block title %} Audit Log {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Audit Log (Coming soon)</h1>
|
|
|
|
<section class="container mb-4">
|
|
<form action="/history" hx-get="/history" hx-trigger="change" hx-target="#items">
|
|
<div class="row">
|
|
<div class="col-sm-2">
|
|
<label for="start-date" class="form-label">Start Date</label>
|
|
<input type="date" id="start-date" name="start-date" value="{{ start_date }}" class="form-control" />
|
|
</div>
|
|
<div class="col-sm-2">
|
|
<label for="start-time" class="form-label">Start Time</label>
|
|
<input type="time" id="start-time" name="start-time" value="{{ start_time }}" class="form-control"/>
|
|
<small class="form-text">Timezone {{ time_zone }}</small>
|
|
</div>
|
|
<div class="col-sm-2">
|
|
<label for="end-date" class="form-label">End Date</label>
|
|
<input type="date" id="end-date" name="end-date" value="{{ end_date }}" class="form-control"/>
|
|
</div>
|
|
<div class="col-sm-2">
|
|
<label for="end-time" class="form-label">End Time</label>
|
|
<input type="time" id="end-time" name="end-time" value="{{ end_time }}" class="form-control"/>
|
|
<small class="form-text">Timezone {{ time_zone }}</small>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
|
|
<section id="items" class="container">
|
|
{% include "history_item_fragment.html" %}
|
|
</section>
|
|
|
|
{% endblock %} |