mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
17 lines
449 B
HTML
17 lines
449 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<form method="post" enctype='multipart/form-data'>
|
|
<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 %} |