mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	* Introduce 'accounts' app for user-specific views & resources * Move UserTokenTable to account app * Move login & logout views to account app
		
			
				
	
	
		
			87 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'account/base.html' %}
 | 
						|
{% load helpers %}
 | 
						|
{% load form_helpers %}
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
{% block title %}{% trans "User Preferences" %}{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
  <form method="post" action="" id="preferences-update">
 | 
						|
    {% csrf_token %}
 | 
						|
 | 
						|
    {# Built-in preferences #}
 | 
						|
    {% for group, fields in form.fieldsets %}
 | 
						|
      <div class="field-group my-5">
 | 
						|
        <div class="row mb-2">
 | 
						|
          <h5 class="offset-sm-3">{{ group }}</h5>
 | 
						|
        </div>
 | 
						|
        {% for name in fields %}
 | 
						|
          {% render_field form|getfield:name %}
 | 
						|
        {% endfor %}
 | 
						|
      </div>
 | 
						|
    {% endfor %}
 | 
						|
 | 
						|
    {# Plugin preferences #}
 | 
						|
    {% with plugin_fields=form.plugin_fields %}
 | 
						|
      {% if plugin_fields %}
 | 
						|
        <div class="field-group my-5">
 | 
						|
          <div class="row mb-2">
 | 
						|
            <h5 class="offset-sm-3">{% trans "Plugins" %}</h5>
 | 
						|
          </div>
 | 
						|
          {% for name in plugin_fields %}
 | 
						|
            {% render_field form|getfield:name %}
 | 
						|
          {% endfor %}
 | 
						|
        </div>
 | 
						|
      {% endif %}
 | 
						|
    {% endwith %}
 | 
						|
 | 
						|
    {# Table configurations #}
 | 
						|
    <div class="field-group my-5">
 | 
						|
      <div class="row mb-2">
 | 
						|
        <h5 class="offset-sm-3">{% trans "Table Configurations" %}</h5>
 | 
						|
      </div>
 | 
						|
      <div class="row">
 | 
						|
        {% if request.user.config.data.tables %}
 | 
						|
          <label class="col-sm-3 col-form-label text-lg-end">
 | 
						|
            {% trans "Clear table preferences" %}
 | 
						|
          </label>
 | 
						|
          <div class="col-sm-9">
 | 
						|
            <table class="table table-hover object-list">
 | 
						|
              <thead>
 | 
						|
                <tr>
 | 
						|
                  <th>
 | 
						|
                    <input type="checkbox" class="toggle form-check-input" title="{% trans "Toggle All" %}">
 | 
						|
                  </th>
 | 
						|
                  <th>{% trans "Table" %}</th>
 | 
						|
                  <th>{% trans "Ordering" %}</th>
 | 
						|
                  <th>{% trans "Columns" %}</th>
 | 
						|
                </tr>
 | 
						|
              </thead>
 | 
						|
              <tbody>
 | 
						|
                {% for table, prefs in request.user.config.data.tables.items %}
 | 
						|
                  <tr>
 | 
						|
                    <td>
 | 
						|
                      <input type="checkbox" name="pk" value="tables.{{ table }}" class="form-check-input" />
 | 
						|
                    </td>
 | 
						|
                    <td>{{ table }}</td>
 | 
						|
                    <td>{{ prefs.ordering|join:", "|placeholder }}</td>
 | 
						|
                    <td>{{ prefs.columns|join:", "|placeholder }}</td>
 | 
						|
                  </tr>
 | 
						|
                {% endfor %}
 | 
						|
              </tbody>
 | 
						|
            </table>
 | 
						|
          </div>
 | 
						|
        {% else %}
 | 
						|
          <div class="offset-sm-3">
 | 
						|
            <p class="text-muted">{% trans "None found" %}</p>
 | 
						|
          </div>
 | 
						|
        {% endif %}
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
    <div class="text-end my-3">
 | 
						|
      <a class="btn btn-outline-secondary" href="{% url 'account:preferences' %}">{% trans "Cancel" %}</a>
 | 
						|
      <button type="submit" name="_update" class="btn btn-primary">{% trans "Save" %}</button>
 | 
						|
    </div>
 | 
						|
  </form>
 | 
						|
{% endblock %}
 |