forked from extern/django-helpdesk
30 lines
844 B
HTML
30 lines
844 B
HTML
{% extends "helpdesk/base.html" %}{% load i18n bootstrap4form %}
|
|
|
|
{% block helpdesk_title %}{% trans "Change User Settings" %}{% endblock %}
|
|
|
|
{% block helpdesk_breadcrumb %}
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'helpdesk:user_settings' %}">{% trans "Settings" %}</a>
|
|
</li>
|
|
<li class="breadcrumb-item active">
|
|
Change User Settings
|
|
</li>
|
|
{% 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>
|
|
|
|
{% block form_content %}
|
|
<form role="form" method='post' action='./'>
|
|
{% csrf_token %}
|
|
{{ form|bootstrap4form }}
|
|
<div class="form-group">
|
|
<input type="submit" value="Submit"/>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|