23 lines
908 B
HTML
23 lines
908 B
HTML
{% extends "default.html" %}
|
|
{% block pagetitle %}Under Siege Thresholds{% endblock %}
|
|
{% block content %}
|
|
<section class="settings-section-section">
|
|
<h5>Thresholds in Minutes</h5>
|
|
<div class="settings-section rounded mt-4">
|
|
<form action="/admin/under_siege" method="post" data-nonce="{{g.nonce}}" data-onsubmit="sendFormXHR(this)">
|
|
<div class="body">
|
|
{% for name, value in thresholds.items() %}
|
|
<div class="d-flex">
|
|
<label for="{{name}}" class="mb-0 w-50 w-md-25">{{name.title()}}</label>
|
|
<input autocomplete="off" class="form-control mb-2 w-75 w-md-100" type="number" min="0" step="1" id="{{name}}" name="{{name}}" value="{{value}}" required>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
<div class="footer d-flex">
|
|
<input autocomplete="off" class="btn btn-primary ml-auto" type="submit" value="Submit">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|