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.
|
|
{% extends "base.html" %}
{% block content %} <form id="reply" action='{{ sitepath }}upload' method='post'> <div id="main"> <div id="info" class="ninfo"> <div> <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> </div> <div> <input type="submit" value="Paste"> <select id="expiry" name="expires"> <option disabled="disabled">Expires:</option> {% for expiry in expirylist %} <option value="{{ expiry.Seconds }}"{% if forloop.Last %} selected{% endif %}>{{ expiry.Human }}</option> {% endfor %} </select> </div> </div>
<div id="inner_content"> <textarea name='content' id="content" class="editor"></textarea> </div> </div> </form>
<script src="{{ sitepath }}static/js/util.js"></script> <script src="{{ sitepath }}static/js/paste.js"></script> {% endblock %}
|