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.
19 lines
337 B
19 lines
337 B
{% load crispy_forms_tags %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>FormApp</title>
|
|
</head>
|
|
<body>
|
|
<h1>Feedback formular</h1>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{{form | crispy}}
|
|
<input type="submit">
|
|
</form>
|
|
<br>
|
|
<a href="/feedback/">SEZNAM ODPOVĚDÍ</a>
|
|
|
|
</body>
|
|
</html>
|