All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
20 lines
546 B
HTML
20 lines
546 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h4>Edit door access token {{ token.token.uid_hash[-6:] }}</h4>
|
|
<form method="POST" autocomplete="off">
|
|
{{ form.csrf_token }}
|
|
{{ form.comment.label }} {{ form.comment(size=20) }}
|
|
<p>
|
|
<label>
|
|
{{ form.enabled }}
|
|
<span>{{ form.enabled.label }}</span>
|
|
</label>
|
|
</p>
|
|
<br/>
|
|
<button class="btn waves-effect waves-light" type="submit">Save</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|