mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 10:51:03 +00:00
20 lines
701 B
HTML
20 lines
701 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.code %}
|
|
{% include "forms/_field.html" with field=form.email %}
|
|
{% 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 %}
|