forked from ScoDoc/ScoDoc
44 lines
1.7 KiB
HTML
44 lines
1.7 KiB
HTML
|
|
||
|
{{ sco_header|safe }}
|
||
|
<h2 class="formsemestre">Affectation aux groupes de {{ partition["partition_name"] }}</h2>
|
||
|
|
||
|
<p>Faites glisser les étudiants d'un groupe à l'autre. Les modifications ne
|
||
|
sont enregistrées que lorsque vous cliquez sur le bouton "<em>Enregistrer ces groupes</em>".
|
||
|
Vous pouvez créer de nouveaux groupes. Pour <em>supprimer</em> un groupe, utiliser le lien
|
||
|
"suppr." en haut à droite de sa boite.
|
||
|
Vous pouvez aussi <a class="stdlink"
|
||
|
href="{{ url_for('scolar.groups_auto_repartition', scodoc_dept=g.scodoc_dept, partition_id=partition['partition_id']) }}"
|
||
|
>répartir automatiquement les groupes</a>.
|
||
|
</p>
|
||
|
|
||
|
<div id="gmsg" class="head_message"></div>
|
||
|
<div id="ginfo"></div>
|
||
|
<div id="savedinfo"></div>
|
||
|
<form name="formGroup" id="formGroup" onSubmit="return false;">
|
||
|
<input type="hidden" name="partition_id" value="{{ partition['partition_id'] }}"/>
|
||
|
<input name="groupName" size="6"/>
|
||
|
<input type="button" onClick="createGroup();" value="Créer groupe"/>
|
||
|
|
||
|
<input type="button" onClick="submitGroups( target='gmsg' );" value="Enregistrer ces groupes" />
|
||
|
|
||
|
<input type="button"
|
||
|
onClick="document.location = '{{ url_for( 'notes.formsemestre_status', scodoc_dept=g.scodoc_dept, formsemestre_id=formsemestre_id) }}'"
|
||
|
value="Annuler" /> Éditer groupes de
|
||
|
<select name="other_partition_id" onchange="GotoAnother();">
|
||
|
{% for p in partitions_list %}
|
||
|
<option value="{{ p['id'] }}" {{"selected" if p["partition_id"] == partition_id }}>{{p["partition_name"]}}</option>
|
||
|
{% endfor %}
|
||
|
</select>
|
||
|
</form>
|
||
|
|
||
|
<div id="groups">
|
||
|
</div>
|
||
|
|
||
|
<div style="clear: left; margin-top: 15px;">
|
||
|
<p class="help"></p>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
{{ sco_footer|safe }}
|