Primarne pro 3.IM - Django aplikace pro jednoduché vytvoření formuláře
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.
 
 

18 lines
290 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>
</body>
</html>