2017-06-25 17:30:49 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("kfet", "0055_move_permissions")]
|
2017-06-25 17:30:49 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterModelOptions(
|
2018-10-06 12:35:49 +02:00
|
|
|
name="account",
|
|
|
|
options={
|
|
|
|
"permissions": (
|
|
|
|
("is_team", "Is part of the team"),
|
|
|
|
("manage_perms", "Gérer les permissions K-Fêt"),
|
|
|
|
("manage_addcosts", "Gérer les majorations"),
|
|
|
|
("edit_balance_account", "Modifier la balance d'un compte"),
|
|
|
|
(
|
|
|
|
"change_account_password",
|
|
|
|
"Modifier le mot de passe d'une personne de l'équipe",
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"special_add_account",
|
|
|
|
"Créer un compte avec une balance initiale",
|
|
|
|
),
|
|
|
|
("can_force_close", "Fermer manuellement la K-Fêt"),
|
|
|
|
)
|
|
|
|
},
|
|
|
|
)
|
2017-06-25 17:30:49 +02:00
|
|
|
]
|