Add missing file
This commit is contained in:
parent
de2fb7dc9c
commit
61c206be3d
10
recipes/templates/edit-recipe.html
Normal file
10
recipes/templates/edit-recipe.html
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{% extends "base_main.html" %}
|
||||||
|
{% block title %}{{ recipe.title }}{% endblock %}
|
||||||
|
{% block main %}
|
||||||
|
<form action="" method="post">
|
||||||
|
{%csrf_token %}
|
||||||
|
{{ form.as_div }}
|
||||||
|
<input type="submit" value="Submit">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
Loading…
Reference in a new issue