Num. des sous-comp.
This commit is contained in:
parent
359aa290ea
commit
4f7c294768
2 changed files with 26 additions and 1 deletions
25
cms/migrations/0006_auto_20170616_0906.py
Normal file
25
cms/migrations/0006_auto_20170616_0906.py
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.1 on 2017-06-16 07:06
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('cms', '0005_auto_20170503_2043'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='module',
|
||||
name='periode_presentiel',
|
||||
field=models.IntegerField(verbose_name='Présentiel'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='module',
|
||||
name='pratique_prof',
|
||||
field=models.IntegerField(default=0, verbose_name='Pratique prof.'),
|
||||
),
|
||||
]
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
<tr><th>Plus-value sur le CFC ASE</th><td>
|
||||
{% for c in object.competence_set.all %}
|
||||
{% for sc in c.souscompetence_set.all %}
|
||||
- {{sc.nom}} <br />
|
||||
- {{sc.nom}} (voir {{sc.competence.code}}) <br />
|
||||
{%endfor %}
|
||||
{% endfor %}
|
||||
</td></tr>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue