This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/admin/domain_edit.html

20 lines
534 B
HTML
Raw Normal View History

2022-11-17 05:12:28 +01:00
{% extends "base.html" %}
{% block title %}{{ domain.domain }} - Admin{% endblock %}
2022-11-17 05:12:28 +01:00
{% block content %}
{% block menu %}
{% include "admin/_menu.html" %}
2022-11-17 05:12:28 +01:00
{% endblock %}
<form action="." method="POST">
{% csrf_token %}
{% for field in form %}
{% include "forms/_field.html" %}
{% endfor %}
<div class="buttons">
<a href="{{ domain.urls.delete }}" class="button delete">Delete</a>
<button>Save</button>
</div>
</form>
{% endblock %}