Extend examination room length
This commit is contained in:
parent
0e5316e733
commit
cbbcc2c5ca
2 changed files with 17 additions and 1 deletions
16
stages/migrations/0033_room_length.py
Normal file
16
stages/migrations/0033_room_length.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('stages', '0032_contact_nationalite'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='examination',
|
||||
name='room',
|
||||
field=models.CharField(blank=True, max_length=30, verbose_name='Salle'),
|
||||
),
|
||||
]
|
||||
|
|
@ -400,7 +400,7 @@ class Examination(models.Model):
|
|||
)
|
||||
type_exam = models.CharField("Type", max_length=10, choices=TYPE_EXAM_CHOICES)
|
||||
date_exam = models.DateTimeField(blank=True, null=True)
|
||||
room = models.CharField('Salle', max_length=15, blank=True)
|
||||
room = models.CharField('Salle', max_length=30, blank=True)
|
||||
mark = models.DecimalField('Note', max_digits=3, decimal_places=2, blank=True, null=True)
|
||||
mark_acq = models.CharField('Note', max_length=5, choices=ACQ_MARK_CHOICES, blank=True)
|
||||
internal_expert = models.ForeignKey(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue