mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2025-01-15 10:28:37 +01:00
18 lines
610 B
HTML
18 lines
610 B
HTML
{% extends "helpdesk/base.html" %}{% load i18n bootstrap %}
|
|
|
|
{% block helpdesk_title %}{% trans "Change User Settings" %}{% endblock %}
|
|
|
|
{% block helpdesk_body %}
|
|
<h2>{% trans "User Settings" %}</h2>
|
|
|
|
<p>{% blocktrans %}Use the following options to change the way your helpdesk system works for you. These settings do not impact any other user.{% endblocktrans %}</p>
|
|
|
|
<form role="form" method='post' action='./'>
|
|
{{ form|bootstrap }}
|
|
<div class="form-group">
|
|
<input class="btn btn-primary" type='submit' value='{% trans "Save Options" %}' />
|
|
</div>
|
|
{% csrf_token %}</form>
|
|
|
|
{% endblock %}
|