40 linhas
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			40 linhas
		
	
	
		
			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>
 | |
| 
 | |
| 
 |