2015-09-30 18:06:23 +02:00
{% extends "base.html" %}
{% block head %}
2015-10-30 23:36:47 +01:00
< link href = "{{ sitepath }}static/css/highlight/tomorrow.css" rel = "stylesheet" type = "text/css" >
2015-09-30 18:06:23 +02:00
{% endblock %}
2015-10-04 23:13:29 +02:00
{% block innercontentmore %} class="scrollable"{% endblock %}
2015-09-30 18:06:23 +02:00
{% block infoleft %}
2015-10-04 23:13:29 +02:00
< div id = "editform" >
2015-10-30 23:36:47 +01:00
< form id = "reply" action = '{{ sitepath }}upload' method = 'post' >
2015-09-30 18:06:23 +02:00
< div class = "right" >
2015-10-04 23:13:29 +02:00
< select id = "expiry" name = "expires" >
2015-09-30 18:06:23 +02:00
< option disabled = disabled > Expires:< / option >
< option value = "0" > never< / option >
< option value = "60" > a minute< / option >
< option value = "300" > 5 minutes< / option >
< option value = "3600" > an hour< / option >
< option value = "86400" > a day< / option >
< option value = "604800" > a week< / option >
< option value = "2419200" > a month< / option >
< option value = "29030400" > a year< / option >
2015-10-04 23:13:29 +02:00
< / select >
2015-09-30 18:06:23 +02:00
2015-10-04 23:13:29 +02:00
< button id = "save" > save< / button >
< / div >
2015-09-30 18:06:23 +02:00
2015-10-04 23:13:29 +02:00
< input class = "codebox" name = 'filename' id = "filename" type = 'text' value = "" placeholder = "filename (empty for random filename)" > .< input id = "extension" class = "codebox" name = 'extension' type = 'text' value = "{{ extra.extension }}" placeholder = "txt" >
< textarea name = 'content' id = "newcontent" class = "editor" > < / textarea >
< / form >
2015-09-30 18:06:23 +02:00
< / div >
{% endblock %}
{%block infomore %}
2015-10-04 23:13:29 +02:00
< label > wrap < input id = "wordwrap" type = "checkbox" checked > < / label > |
2015-09-30 18:06:23 +02:00
{% endblock %}
{% block main %}
2015-10-15 18:24:23 +02:00
< div id = "normal-content" class = "normal fixed" >
2015-10-04 23:13:29 +02:00
< pre id = "normal-code" > < code id = "codeb" class = "{{ extra.lang_hl }}" > {{ extra.contents }}< / code > < / pre >
2015-10-05 01:05:13 +02:00
< textarea id = "editor" class = "editor" > {{ extra.contents }}< / textarea >
2015-09-30 18:06:23 +02:00
< / div >
{% if extra.lang_hl != "text" %}
2015-10-30 23:36:47 +01:00
< script src = "{{ sitepath }}static/js/highlight/highlight.pack.js" > < / script >
2015-11-12 17:17:53 +01:00
< script src = "{{ sitepath }}static/js/highlight/highlightjs-line-numbers.min.js" > < / script >
2015-10-30 23:36:47 +01:00
< script src = "{{ sitepath }}static/js/bin_hljs.js" > < / script >
2015-09-30 18:06:23 +02:00
{% endif %}
2015-10-30 23:36:47 +01:00
< script src = "{{ sitepath }}static/js/util.js" > < / script >
< script src = "{{ sitepath }}static/js/bin.js" > < / script >
2015-09-30 18:06:23 +02:00
{% endblock %}