14 lines
281 B
HTML
14 lines
281 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div>
|
||
|
<h2>Edit Tenant</h2>
|
||
|
<form action="" method="post">{% csrf_token %}
|
||
|
<table>
|
||
|
{{ form.as_table }}
|
||
|
</table>
|
||
|
<input type="submit" value="Update">
|
||
|
</form>
|
||
|
</div>
|
||
|
{% endblock content %}
|