mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 11:23:10 +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.,
|
# 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.
|
||||||
où 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
|
||||||
|
|
|
@ -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 :
|
The following forms are mainly used to create, edit or delete
|
||||||
- un user (informations personnelles)
|
anything related to 'users' :
|
||||||
- un bannissement
|
* Adherent (personnal data)
|
||||||
- le mot de passe d'un user
|
* Club
|
||||||
- une whiteliste
|
* Ban
|
||||||
- un user de service
|
* 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
|
||||||
|
|
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.,
|
# 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…
Reference in a new issue