proxadmin/app/templates/panel/support_item.html

25 lines
823 B
HTML

{% block support_item %}
<div class="panel panel-danger" style="margin-top: 2px">
<div class="panel-heading" href="#support{{ support.pid }}" aria-expanded="true" aria-controls="support{{ support.pid }}" role="tab" id="support{{ support.pid }}">
<font color="green">{{ support.hashtag }} started at {{ support.timestamp }}</font></b></a>
i </div>
</div> <!-- end of heading -->
<br />
{% for line in inv_lines %}
{{ line.timestamp }}
{{ line.line }} <br />
{% endfor %}
<form method="POST" action="{{ url_for('panel.support', topic=support.hashtag) }}">
{{ form.line | safe }}
{% for error in form.line.errors %}
{{ error }}<br />
{% endfor %}
{{ form.csrf_token() }}
{{ form.submit }}
</form>
{% endblock %}