mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 03:13:12 +00:00
Final translation of users app
This commit is contained in:
parent
9a3b395e6c
commit
c709a7e8b2
4 changed files with 1291 additions and 454 deletions
|
@ -21,8 +21,10 @@
|
|||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
"""
|
||||
Definition des vues pour les admin. Classique, sauf pour users,
|
||||
où on fait appel à UserChange et ServiceUserChange, forms custom
|
||||
Admin views basic definition, include basic definition of admin view.
|
||||
|
||||
Except for Admin edition and creation of users and services users;
|
||||
with AdherentAdmin, ClubAdmin and ServiceUserAdmin.
|
||||
"""
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
|
|
@ -23,14 +23,20 @@
|
|||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
# 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)
|
||||
- un bannissement
|
||||
- le mot de passe d'un user
|
||||
- une whiteliste
|
||||
- un user de service
|
||||
The following forms are mainly used to create, edit or delete
|
||||
anything related to 'users' :
|
||||
* Adherent (personnal data)
|
||||
* Club
|
||||
* Ban
|
||||
* ServiceUser
|
||||
* Whitelists
|
||||
* ...
|
||||
|
||||
See the details for each of these operations in the documentation
|
||||
of each of the method.
|
||||
"""
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
|
1717
users/models.py
1717
users/models.py
File diff suppressed because it is too large
Load diff
|
@ -23,7 +23,7 @@
|
|||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
# 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
|
||||
|
|
Loading…
Reference in a new issue