mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-25 11:19:57 +00:00
.github
antispam
api
club
com
core
counter
docs
eboutic
election
forum
galaxy
locale
matmat
pedagogy
rootplace
sas
sith
staticfiles
subscription
migrations
0001_initial.py
0002_auto_20160830_1719.py
0003_auto_20160902_1914.py
0004_auto_20170821_1849.py
0005_auto_20170821_2054.py
0006_auto_20170902_1222.py
0007_auto_20180706_1135.py
0008_auto_20180831_2016.py
0009_auto_20180920_1421.py
0010_auto_20180920_1441.py
0011_auto_20190825_2215.py
0012_auto_20200615_1438.py
0013_auto_20200828_2117.py
0014_auto_20201207_2323.py
__init__.py
static
templates
tests
__init__.py
admin.py
forms.py
models.py
urls.py
views.py
trombi
.coveragerc
.env.example
.envrc
.gitattributes
.gitignore
.mailmap
.npmrc
.pre-commit-config.yaml
.python-version
CONTRIBUTING.rst
LICENSE
Procfile.service
Procfile.static
README.md
biome.json
conftest.py
manage.py
mkdocs.yml
openapi-csrf.ts
openapi-ts.config.ts
package-lock.json
package.json
pyproject.toml
tsconfig.json
uv.lock
vite.config.mts
36 lines
1.4 KiB
Python
36 lines
1.4 KiB
Python
# Generated by Django 1.11.13 on 2018-07-06 09:35
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [("subscription", "0006_auto_20170902_1222")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="subscription",
|
|
name="subscription_type",
|
|
field=models.CharField(
|
|
choices=[
|
|
("amicale/doceo", "Amicale/DOCEO member"),
|
|
("assidu", "Assidu member"),
|
|
("benevoles-euroks", "Eurok's volunteer"),
|
|
("crous", "CROUS member"),
|
|
("cursus-alternant", "Alternating cursus"),
|
|
("cursus-branche", "Branch cursus"),
|
|
("cursus-tronc-commun", "Common core cursus"),
|
|
("deux-mois-essai", "Two month for free"),
|
|
("deux-semestres", "Two semesters"),
|
|
("membre-honoraire", "Honorary member"),
|
|
("reseau-ut", "UT network member"),
|
|
("sbarro/esta", "Sbarro/ESTA member"),
|
|
("un-semestre", "One semester"),
|
|
("un-semestre-welcome", "One semester Welcome Week"),
|
|
],
|
|
max_length=255,
|
|
verbose_name="subscription type",
|
|
),
|
|
)
|
|
]
|