[x] Pas de "pointer" sur lien sans destination
+ lien dossier étudiant pour enseignant + mes groupes + saisie notes + lien dossier étudiant pour étudiant + tous les groupes + mes groupes + lien contrôle étudiant
This commit is contained in:
parent
bb6dc71723
commit
f991b439ae
|
@ -197,12 +197,17 @@ span.link{
|
|||
|
||||
/* foreground */
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* désactivation du curseur pointer pour les liens sans destination */
|
||||
span.link:not(.inactive){
|
||||
/* extra */
|
||||
cursor: pointer;
|
||||
}
|
||||
span.link:hover:not(.inactive){ color: #000; }
|
||||
|
||||
table.basic td > span.link{ background: #eee; }
|
||||
span.link:hover{ color: #000; }
|
||||
|
||||
|
||||
/*********************/
|
||||
/*** SELECT/OPTION ***/
|
||||
|
|
|
@ -113,7 +113,7 @@ if( permission('student') ){ // si l'utilisateur est connecté et que c'est un
|
|||
|
||||
foreach($module['controles'] as $controle){ // pour chaque contrôle
|
||||
echo '<tr>';
|
||||
echo '<td><span class=link>'.$controle['libelle'].'</span></td>';
|
||||
echo "<td><span class='link inactive'>".$controle['libelle']."</span></td>";
|
||||
|
||||
if( $controle['publication'] == '0' || count($controle['notes']) == 0 ) // si aucune note pour ce controle on affiche 'Pas de note'
|
||||
echo '<td><span class=unstressed>Pas encore de note</span></td>';
|
||||
|
@ -430,7 +430,7 @@ elseif( permission('teacher') ){ // si enseignant et qu'un contrôle est spécif
|
|||
foreach($answer->controle['userlist'] as $user){ // on affiche la liste des élèves avec leurs notes
|
||||
echo "<tr>";
|
||||
|
||||
echo "<td><span class='link etu' data-etu='".$user['identifiant']."' data-ctrl='".$answer->controle['id']."' data-info='".$user['prenom'].' '.$user['nom']."'>".$user['identifiant']."</span></td>";
|
||||
echo "<td><span class='link etu inactive' data-etu='".$user['identifiant']."' data-ctrl='".$answer->controle['id']."' data-info='".$user['prenom'].' - '.$user['nom']."'>".$user['identifiant']."</span></td>";
|
||||
echo "<td><span class='link grp' data-grp='".$user['id_groupe']."'>".$user['groupe']."</span></td>";
|
||||
|
||||
if( $user['note'] != null ) // si on a une note
|
||||
|
|
|
@ -88,7 +88,7 @@ if( permission('student') ){ // si connecté && utilisateur
|
|||
// pour chaque utilisateur
|
||||
foreach($group['userlist'] as $user){
|
||||
echo '<tr>';
|
||||
echo "<td><span class=link>".$user['identifiant'].'</span></td>';
|
||||
echo "<td><span class='link inactive'>".$user['identifiant'].'</span></td>';
|
||||
echo '<td>'.$user['prenom'].'</td>';
|
||||
echo '<td>'.$user['nom'].'</td>';
|
||||
echo '<td>'.$group['semestre'].'</td>';
|
||||
|
@ -156,7 +156,7 @@ if( permission('student') ){ // si l'utilisateur est connecté et que c'est un
|
|||
// pour chaque utilisateur
|
||||
foreach($answer->userlist as $user){ if( $user != $answer->userlist['groupe'] ){
|
||||
echo '<tr>';
|
||||
echo "<td><span class=link>".$user['identifiant'].'</span></td>';
|
||||
echo "<td><span class='link inactive'>".$user['identifiant'].'</span></td>';
|
||||
echo '<td>'.$user['prenom'].'</td>';
|
||||
echo '<td>'.$user['nom'].'</td>';
|
||||
echo '<td>'.$user['semestre'].'</td>';
|
||||
|
@ -323,7 +323,7 @@ if( permission('teacher') ){ // si l'utilisateur est connecté et que c'est un
|
|||
// pour chaque utilisateur
|
||||
foreach($group['userlist'] as $user){
|
||||
echo '<tr>';
|
||||
echo "<td><span class=link>".$user['identifiant'].'</span></td>';
|
||||
echo "<td><span class='link inactive'>".$user['identifiant'].'</span></td>';
|
||||
echo '<td>'.$user['prenom'].'</td>';
|
||||
echo '<td>'.$user['nom'].'</td>';
|
||||
echo '<td>'.$group['semestre'].'</td>';
|
||||
|
|
Loading…
Reference in New Issue