You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
294 B
HTML
17 lines
294 B
HTML
{% extends 'base.html' %}
|
|
|
|
|
|
{% block title %}Edit Menu{% endblock %}
|
|
|
|
{% block header %}<h1>Edit Menu {{ object.name }}</h1>{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<form class="model-form" method="post">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
<input type="submit" value="Save">
|
|
</form>
|
|
|
|
{% endblock %}
|