mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-16 11:13:23 +00:00
14 lines
283 B
Plaintext
14 lines
283 B
Plaintext
|
{% extends "core/file.jinja" %}
|
||
|
|
||
|
{% block file %}
|
||
|
<h2>{% trans obj=object %}Edit {{ obj }}{% endtrans %}</h2>
|
||
|
<form action="" method="post">
|
||
|
{% csrf_token %}
|
||
|
{{ form.as_p() }}
|
||
|
<p><input type="submit" value="{% trans %}Save{% endtrans %}" /></p>
|
||
|
</form>
|
||
|
{% endblock %}
|
||
|
|
||
|
|
||
|
|