mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 10:51:03 +00:00
9c376395db
No email tie, added uses and expires, now works by URL.
21 lines
775 B
HTML
21 lines
775 B
HTML
{% extends "settings/base.html" %}
|
|
|
|
{% block subtitle %}View Invite{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="." method="POST">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>Details</legend>
|
|
{% include "forms/_field.html" with field=form.link %}
|
|
{% include "forms/_field.html" with field=form.uses %}
|
|
{% include "forms/_field.html" with field=form.expires_days %}
|
|
{% include "forms/_field.html" with field=form.notes %}
|
|
</fieldset>
|
|
<div class="buttons">
|
|
<a href="{% url "admin_invites" %}" class="button secondary left">Back</a>
|
|
<button class="delete" name="delete">Delete</button>
|
|
<button>Save</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|