File: form.html

package info (click to toggle)
python-django-braces 1.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 484 kB
  • sloc: python: 2,680; makefile: 138; sh: 6
file content (12 lines) | stat: -rw-r--r-- 172 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
<html>
<head></head>
<body>
    {% if messages %}
    {% for message in messages %}
    {{ message }}
    {% endfor %}
    {% endif %}

    {{ form.as_p }}
</body>
</html>