table of student with student?

Started by Benahmed Abdelkrim, April 24, 2016, 06:15:40 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Benahmed Abdelkrim

  In the tables of students produced by FET, version of Algeria, we find in some cases only, the name of the class (4AM1 for example). how to avoid this? this happens in all tables, with only two activities: TD  and td
I attached the picture.
B.A/krim

Volker Dirr

The students names are always displayed as soon as there are 2 or more then activities in a single cell.
The main idea is, because there are normally different subgroups then.
You have got a special variant, since you have got a same starting time activity in the same cell.

Overall there are currently 2 variants to hide that:
a) hide the activity with same starting time (FET -> Timetables -> Print activities with same starting time)
b) You can hide all "line0" by css.
So search this in css file:
tr.line0, div.line0 {
  font-size: smaller;
}


and modify into this:
tr.line0, div.line0 {
  display:none;
}

Benahmed Abdelkrim

   yes I know, but we apply this procedure, FET will not show rooms in the cells of these activities.   because it is necessary for students to know where they should go. these types of activities need two rooms.
B.A/krim

Volker Dirr

#3
yes and no.

yes: my first suggestion doesn't display the room. that is already some time in the TODO now. FET support only one room per activity, not more.

no: my second suggestion doesn't hide the room. if you do it like that, then your students can still see the room.

Benahmed Abdelkrim

B.A/krim