8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-19 09:02:35 +00:00
This commit is contained in:
Hugo Levy-Falk 2019-09-20 14:48:37 +02:00
parent 347cd8bf5d
commit b8d8c11cb0
5 changed files with 34 additions and 4 deletions

View file

@ -93,14 +93,14 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% can_view_app users %}
<li><a href="{% url 'users:index' %}"><i class="fa fa-user"></i> {% trans "Manage the users" %}</a></li>
<li><a href="{% url 'users:index-clubs' %}"><i class="fa fa-users"></i> {% trans "Manage the clubs" %}</a></li>
{% acl_end %}
{% acl_end %}
{% can_view_app machines %}
<li><a href="{% url 'machines:index' %}"><i class="fa fa-desktop"></i> {% trans "Manage the machines" %}</a></li>
{% acl_end %}
{% can_view_app cotisations %}
<li><a href="{% url 'cotisations:index' %}"><i class="fa fa-eur"></i> {% trans "Manage the subscriptions" %}</a></li>
{% acl_end %}
{% for template in optionnal_templates_navbar_user_list%}
{{ template }}
{% endfor %}
@ -301,8 +301,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
let s = Sapphire();
Konami(s.activate);
</script>
{% if request.user.shortcuts_enabled %}
<script src="/static/js/shortcuts.js"></script>
{% endif %}
{# Read the documentation for more information #}
</body>
</html>

View file

@ -441,7 +441,8 @@ class AdherentEditForm(AdherentForm):
'telephone',
'room',
'shell',
'gpg_fingerprint'
'gpg_fingerprint',
'shortcuts_enabled',
]
class ClubForm(FormRevMixin, FieldPermissionFormMixin, ModelForm):

View file

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.23 on 2019-09-20 12:38
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0082_auto_20190908_1338'),
]
operations = [
migrations.AddField(
model_name='user',
name='shortcuts_enabled',
field=models.BooleanField(default=True, verbose_name='Enable shortcuts on Re2o website'),
),
]

View file

@ -247,6 +247,10 @@ class User(RevMixin, FieldPermissionModelMixin, AbstractBaseUser,
blank=True,
null=True
)
shortcuts_enabled = models.BooleanField(
verbose_name=_("Enable shortcuts on Re2o website"),
default=True
)
USERNAME_FIELD = 'pseudo'
REQUIRED_FIELDS = ['surname', 'email']

View file

@ -305,6 +305,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<dd>{{ users.shell }}</dd>
</div>
{% endif %}
<div class="col-md-6 col-xs-12">
<dt>{% trans "Shortcuts enabled" %}</dt>
<dd>{{ users.shortcuts_enabled | tick }}</dd>
</div>
</dl>
</div>
</div>