FET Forum

FET Development => Report Test Results => Topic started by: Benahmed Abdelkrim on April 24, 2016, 06:15:40 PM

Title: table of student with student?
Post by: Benahmed Abdelkrim on April 24, 2016, 06:15:40 PM
  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.
Title: Re: table of student with student?
Post by: Volker Dirr on April 24, 2016, 06:27:21 PM
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;
}
Title: Re: table of student with student?
Post by: Benahmed Abdelkrim on April 24, 2016, 06:59:10 PM
   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.
Title: Re: table of student with student?
Post by: Volker Dirr on April 24, 2016, 07:28:40 PM
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.
Title: Re: table of student with student?
Post by: Benahmed Abdelkrim on April 24, 2016, 07:31:40 PM
thank you. I understood well.