Module_didactic_pub
This commit is contained in:
parent
5221b2b068
commit
e4faab1cd5
3 changed files with 25 additions and 12 deletions
24
cms/migrations/0004_auto_20170503_2036.py
Normal file
24
cms/migrations/0004_auto_20170503_2036.py
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.4 on 2017-05-03 18:36
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('cms', '0003_auto_20170419_1409'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='uploaddoc',
|
||||
options={'verbose_name': 'UploadDoc'},
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='module',
|
||||
name='didactique_published',
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
]
|
||||
|
|
@ -125,6 +125,7 @@ class Module(models.Model):
|
|||
pratique_prof = models.IntegerField(default=0, verbose_name='Pratique professionnelle')
|
||||
didactique = models.TextField()
|
||||
evaluation = models.TextField()
|
||||
didactique_published = models.BooleanField(default=False)
|
||||
sem1 = models.IntegerField(default=0)
|
||||
sem2 = models.IntegerField(default=0)
|
||||
sem3 = models.IntegerField(default=0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue