Contains the Concourse pipeline definition for building a line-server container
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.3 KiB

9 years ago
9 years ago
9 years ago
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <form id="reply" action='{{ sitepath }}upload' method='post'>
  4. <div id="main">
  5. <div id="info" class="ninfo">
  6. <input class="codebox" name='filename' id="filename" type='text' value="" placeholder="filename (empty for random filename)" />.<span class="hint--top hint--bounce" data-hint="Enable syntax highlighting by adding the extension"><input id="extension" class="codebox" name='extension' type='text' value="" placeholder="txt" /></span>
  7. <div class="right">
  8. <select id="expiry" name="expires">
  9. <option disabled="disabled">Expires:</option>
  10. {% for expiry in expirylist %}
  11. <option value="{{ expiry.Seconds }}"{% if forloop.Last %} selected{% endif %}>{{ expiry.Human }}</option>
  12. {% endfor %}
  13. </select>
  14. <input type="submit" value="Paste">
  15. </div>
  16. </div>
  17. <div id="inner_content">
  18. <textarea name='content' id="content" class="editor"></textarea>
  19. </div>
  20. </div>
  21. </form>
  22. <script src="{{ sitepath }}static/js/util.js"></script>
  23. <script src="{{ sitepath }}static/js/paste.js"></script>
  24. {% endblock %}