All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
13 lines
389 B
HTML
13 lines
389 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) }}
|
|
<button class="btn waves-effect waves-light" type="submit">Save</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|