Browse Source

Final translation of users app

release-2.9
Gabriel Detraz 6 years ago
parent
commit
564851feda
  1. 6
      users/admin.py
  2. 22
      users/forms.py
  3. 1635
      users/models.py
  4. 2
      users/urls.py

6
users/admin.py

@ -21,8 +21,10 @@
# with this program; if not, write to the Free Software Foundation, Inc., # with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
""" """
Definition des vues pour les admin. Classique, sauf pour users, Admin views basic definition, include basic definition of admin view.
on fait appel à UserChange et ServiceUserChange, forms custom
Except for Admin edition and creation of users and services users;
with AdherentAdmin, ClubAdmin and ServiceUserAdmin.
""" """
from __future__ import unicode_literals from __future__ import unicode_literals

22
users/forms.py

@ -23,14 +23,20 @@
# with this program; if not, write to the Free Software Foundation, Inc., # with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
""" """
Definition des forms pour l'application users. Forms for the 'users' app of re2o. It highly depends on
:users:models and is mainly used by :users:views.
Modification, creation de :
- un user (informations personnelles) The following forms are mainly used to create, edit or delete
- un bannissement anything related to 'users' :
- le mot de passe d'un user * Adherent (personnal data)
- une whiteliste * Club
- un user de service * Ban
* ServiceUser
* Whitelists
* ...
See the details for each of these operations in the documentation
of each of the method.
""" """
from __future__ import unicode_literals from __future__ import unicode_literals

1635
users/models.py

File diff suppressed because it is too large

2
users/urls.py

@ -23,7 +23,7 @@
# with this program; if not, write to the Free Software Foundation, Inc., # with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
""" """
Definition des urls, pointant vers les views The defined URLs for the Users app
""" """
from __future__ import unicode_literals from __future__ import unicode_literals

Loading…
Cancel
Save