hello! and Successful return;
sometimes you need to see the "Activity tags" in tables produced by FET, but the tables are becoming so large; then the idea that surprises us right now is: why not allow the user to select only the "Activity tags" that wants to print ?.
if this feature is created, the tables will be lightweight, and easy to read.
thanks in advance!
I will add this in the TODO. Meanwhile, do you know that you can choose to print or not the activity tags in the timetables?
thank you!
yes of course I know;
Director: FET-> Settings->Timetables-> Print activity tags in timetables.
If you generate HTML timetables with at least HTML level 3, you can hide (or otherwise style) activity tags that you do not wish to show by modifying the CSS file. (Of course, if you're talking about the timetables that show within FET, the instructions below don't address your request.)
If it it the HTML timetables that you're working with, open the CSS file in a text editor and search for span.at_1. This will mark the start of the section of the CSS file that shows all activities, and you can then modify them as you require. For example, in my CSS files I have all "Art" tags coloured orange, the "Biology" tag is not shown, and the "Business" tag is unaltered. The relevant section of my CSS file is shown below.
span.at_14 { /* activity tag Art */
color:orange;
}
span.at_15 { /* activity tag Biology */
display:none;
}
span.at_16 { /* activity tag Business */
}
Thank you Darren