tildetown-admin/ttadmin/help/templates/help/tickets.html

40 lines
1.2 KiB
HTML

{% load static %}
<!DOCTYPE html>
<html>
<head>
<title>tilde.town help desk</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="{% static 'common/main.css' %}">
<link rel="stylesheet" href="{% static 'common/form.css' %}">
</head>
<body>
<h1>tilde.town help desk</h1>
<p>
hi!
</p>
<p>
this form exists to make it easier for the tilde.town admin to help
people out with system issues like logging in, package installation,
and general questions.
</p>
<p> in using this system, recall that there is just the one admin (<a
href="https://tilde.town/~vilmibm">~vilmibm</a>) and it might take
3-4 days to get a response. Usually you'll hear back within a day,
though!
</p>
{% if error_message %}
<p><strong>{{ error_message }}</strong></p>
{% endif %}
<form class="tilde" action="{% url 'help:tickets' %}" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" value="send off ticket <3">
</form>
</body>
</html>