Url přesunuto z generického formu do příslušného view

This commit is contained in:
Jonas Havelka 2022-07-22 14:23:35 +02:00
parent 1e2ab81bce
commit c33896afec
2 changed files with 2 additions and 1 deletions

View file

@ -8,7 +8,7 @@
{{ nadpis }}
{% endblock %}
</h1>
<form action="{% url 'hromadne_pridani' %}" method="post">
<form action="{% url form_url %}" method="post">
{% csrf_token %}
<table class="form">
{{ form.as_table }}

View file

@ -39,6 +39,7 @@ class HromadnePridaniView(FormView):
def get_context_data(self, **kwargs):
context = super().get_context_data()
context["nadpis"] = "Hromadné přidání úloh"
context["form_url"] = "hromadne_pridani"
return context
def form_valid(self, form):