You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
363 B

{% extends 'partials/base.html' %}
{% block content %}
<form action="{% url 'projects:edit' pk=proj.pk %}" method="POST">
{% csrf_token %}
{{ form }}
<input type="hidden" name="next" value="{% url 'projects:detail' pk=proj.pk %}">
<button type="submit">Сохранить</button>
</form>
{% endblock %}