FET Forum

FET Support (English) => Get Help => Topic started by: maestrodenada on April 07, 2023, 02:03:19 AM

Title: Print with detailed tables without subgroups
Post by: maestrodenada on April 07, 2023, 02:03:19 AM
Hello, sorry for my English.
I have tried using app categories and I have a problem.
When printing the group tables (eg 2ÂșA), if I use the "detailed tables" option, all the subgroups of the activities appear (and in some I have many, it is difficult to read).
Is there an easy way so that when printing the groups with "detailed tables" option the subgroups do not appear?
If I don't use that option, I get three question marks. When what I want is that all the subjects and the teacher that match appear, but not all the subgroups associated with a activity.
(http://maestrodenada.com/fet/fet_detail.png)
Title: Re: Print with detailed tables without subgroups
Post by: Volker Dirr on April 07, 2023, 09:45:41 AM
You can't print that from FET, only with a webbrwoser, if you do this:

FET -> Settings -> Timetable _> HTML Level
select at least level 3

Then generate the table.

Go to the fet-results folder and search the .css file.
Open the css file with an editor and search this (it is at the end of the file):
tr.line0, div.line0 {
  font-size: smaller;
}

Modify it to this:
tr.line0, div.line0 {
  display:none;
}
Save the file.

Open the html file with a webbrowser and print it.
Title: Re: Print with detailed tables without subgroups
Post by: Volker Dirr on April 07, 2023, 09:56:30 AM
A second variant is to enter the data different in FET students structure.
So instead adding all that single groups you might create a new group and add needed subgroups. The activity should get the single group only (not the subgroups).
Depending on your dataset, this trick might be easy or very difficult and time consuming.

So if this trick is not easy with your data set, you should use the variant with modifying the css file.
Title: Re: Print with detailed tables without subgroups
Post by: maestrodenada on April 07, 2023, 01:47:05 PM

Thanks, the solution of editing the css file is fine for me for now.