This repository has been archived on 2023-10-10. You can view files and clone it, but cannot push or open issues or pull requests.
paste/paste/templates/home.html.j2

10 lines
294 B
Django/Jinja

<form id="paste-content" method="POST" accept-charset="UTF-8" action="{{ url_for('home.create') }}">
<input name="content">
<button>Create</button>
</form>
{% with messages = get_flashed_messages() %}
{% if messages %}
<p>{{ messages[0] }}</p>
{% endif %}
{% endwith %}