22 lines
796 B
Django/Jinja
22 lines
796 B
Django/Jinja
{% extends "base.j2" %}
|
|
{% block title %}Pystebin Service{% endblock %}
|
|
{% block head %}
|
|
{{ super() }}
|
|
{% endblock %}
|
|
{% block content %}
|
|
{% if paste_url %}
|
|
<p>Your paste URL: <a href="{{ paste_url }}">{{ paste_url }}</a></p>
|
|
<form method="post">
|
|
<textarea name="content" rows="10" cols="50" placeholder="Paste your text here..."></textarea>
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
{% elif paste_content %}
|
|
<pre><code><script style="display:block" type="text/plain">{{ paste_content|safe }}</script></code></pre>
|
|
{% else %}
|
|
<form method="post">
|
|
<textarea name="content" rows="10" cols="50" placeholder="Paste your text here..."></textarea>
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|