File: home.html

package info (click to toggle)
gunicorn 19.0-1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,060 kB
  • sloc: python: 11,582; makefile: 153; xml: 122; sh: 76
file content (18 lines) | stat: -rw-r--r-- 471 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}

{% block content %}
<form method="post" enctype='multipart/form-data'>
        {% csrf_token %}
        <table>
        {{ form.as_table }}
        </table>
        <input type="submit" id="submit" value="submit">
    </form>

	<h2>Got</h2>
	{% if subject %}
		<p><strong>subject:</strong><br>{{ subject}}</p>
		<p><strong>message:</strong><br>{{ message }}</p>
		<p><strong>size:</strong><br>{{ size }}</p>
	{% endif %}
{% endblock content %}