aboutsummaryrefslogtreecommitdiffstats
path: root/templates/registration/base_admin.html
blob: edc3bae8b3ed0643420a0e7f1a465d36418802af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{% with color="red lighten-1" %}
{% with hexcolor="#ef5350" %}
{% with hexlightcolor="#ef9a9a" %}
<!DOCTYPE html>
<html>
<head>
  {% load static %}
  {% load app_filter %}
  <link rel="stylesheet" type="text/css" href="{% static 'material_icons.css' %}">
  <link rel="stylesheet" type="text/css" href="{% static 'materialize.min.css' %}">
  <style>
    input[type=text]:focus + label, .materialize-textarea:focus:not([readonly]) + label {
      color: {{hexcolor}} !important;
    }

    input[type=text]:focus, .materialize-textarea:focus:not([readonly]) {
      border-bottom: 1px solid {{hexcolor}} !important;
      box-shadow: 0 1px 0 0 {{hexcolor}} !important;
    }

    input[type=password]:focus, .materialize-textarea:focus:not([readonly]) {
      border-bottom: 1px solid {{hexcolor}} !important;
      box-shadow: 0 1px 0 0 {{hexcolor}} !important;
    }

    [type="checkbox"].filled-in:checked + span:not(.lever)::after {
     border: 2px solid {{hexcolor}} !important;
     background-color: {{hexcolor}} !important;
    }

    .switch label input[type="checkbox"]:checked + .lever {
      background-color: {{hexlightcolor}};
    }

    .switch label input[type="checkbox"]:checked + .lever::after {
      background-color: {{hexcolor}};
    }

    .progress .indeterminate {
      background-color: {{hexcolor}};
    }

    .progress .determinate {
      background-color: {{hexcolor}};
    }

    .progress {
      background-color: {{hexlightcolor}};
    }

    .dropdown-content li > a, .dropdown-content li > span {
      color: {{hexcolor}};
    }

    .datepicker-date-display {
      background-color: {{hexcolor}};
    }

    .datepicker-table td.is-selected {
      background-color: {{hexcolor}};
    }

    .datepicker-table td.is-today {
      color: {{hexcolor}};
    }

    .datepicker-cancel, .datepicker-today, .datepicker-done {
      color: black;
    }

    blockquote {
      border-left: 5px solid {{hexcolor}};
    }
  </style>
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <meta charset="utf-8">
  <title>{% block title %}Scout Brega{% endblock %}</title>
</head>
<body>
  <nav class="nav-extended">
    <div class="nav-wrapper {{color}}">
      <ul class="left">
      <li><a id="home_btn" href="{% url 'index' %}"><i class="material-icons">home</i></a></li>
      </ul>
      {% block breadcrumb %}
      {% endblock %}
      <ul class="right">
        <li class="userswitcher" data-target='userswitcher'><a href="#">{{ user.username }}</a></li>
        <ul id='userswitcher' class='dropdown-content'>
          <li><a href="{% url 'personal' %}"><i class="material-icons">person</i>Gestione account</a></li>
          {% if user.is_staff or perms.client.staff %}
            <li><a href="{% url 'server' %}"><i class="material-icons">build</i>Pannello Admin</a></li>
          {% endif %}
          {% if group_view %}
            <li><a class="modal-trigger" href="#modal_capi"><i class="material-icons">list</i>Lista documenti</a></li>
          {% endif %}

          <li><a onclick="switcher_submit('logout')"><i class="material-icons">exit_to_app</i>Logout</a></li>
          <li class="divider" tabindex="-1"></li>
          <li class="divider" tabindex="-1"></li>
          <li class="divider" tabindex="-1"></li>
          <li class="divider" tabindex="-1"></li>
          {% for username in request.COOKIES.user_switcher|parse_userswitcher%}
            {% if username != user.username %}
              <li><a onclick="switcher_submit('s{{username}}')">{{username}}</a></li>
            {% endif %}
          {% endfor %}
          <li><a onclick="switcher_submit('new')"><i class="material-icons">person_add</i>Aggiungi un altro utente</a></li>
          <li class="divider" tabindex="-1"></li>
          <li class="divider" tabindex="-1"></li>
          <li class="divider" tabindex="-1"></li>
          <li class="divider" tabindex="-1"></li>
          <li><a href="{% url 'about' %}">Informazioni sul prodotto</a></li>
        </ul>
      </ul>
    </div>
    {% block toolbar %}
    {% endblock %}
  </nav>

  <main id="main" style="margin-left: 10px;margin-right: 10px;margin-top: 10px;">
    {% block content %}
    {% endblock %}
  </main>
  <script type="text/javascript" src="{% static 'jquery-3.5.1.min.js' %}"></script>
  <script type="text/javascript" src="{% static 'materialize.min.js' %}"></script>
  <script type="text/javascript" src="{% static 'lazyload.js' %}"></script>
  <script>
  $(document).ready(function(){
    $('.tooltipped').tooltip();
  });

  document.addEventListener('DOMContentLoaded', function() {
    var elems = document.querySelectorAll('.userswitcher');
    var instances = M.Dropdown.init(elems, {"coverTrigger": false, "constrainWidth": false});
  });
  function switcher_submit(id) {
    var form = document.getElementById('user_form')
    var action = document.getElementById('metadata')
    action.setAttribute('value', id);
    form.submit()
  }
  {% block script %}
  {% endblock%}
  </script>
</body>
</html>
{% endwith %}
{% endwith %}
{% endwith %}