The issue of weeks getting out of order when you drag and drop was fixed in 2.5.3. See MDL-34209
Happy
oodling!
How about after you do the import, you add an extra blank week by increasing number weeks/topics in the course settings and then from your course homepage, turn editing on and drag the blank week from the bottom to the position of your Spring Break. That should push all the other weeks down.
Happy
oodling!
Bob - That will get you the sum of the scores minus the lowest but then the average function will have a single number to average. Thinking about it, the average function won't work here because we need to sum all the components and drop the lowest first. That leaves us with a large number instead of individual components.
So new calculation: =(sum(g1+...)-min(g1+...))/5
Happy
oodling!
Add a MIN function at the end and you should be good.
=average(item1,item2,...)-min(item1,item2,...)
See the Moodle Docs grade calculations for more of the functions Moodle can do.
Happy
oodling!
We created a new role that archetypes the student role. Users with this role appear to be showing up in the Attendance block as well. Looking in the Site Admin and permissions I don't see any advanced settings to decide which roles appear in the block. So checking to see if somewhere in the code the block picks users with a certain designation of "student" which may also be passed along to new roles archetyped off of the default student role. Working in 2.4 now soon to be 2.5.
Happy
oodling!