I'm sorry for having to ask this, but I've scoured docs+forums+web and can't seem to get all the pieces to fit together to pull this off. It doesn't help that I'm only 3 months into Drupal and have only created 3 views total so far. But I have years of programming + database experience. I know how I would do this if I were to code it, but trying to do it with the views module not so much.
Anyway if anyone could shed some light on this I'd be greatly appreciated. I'm not looking/asking for full blown solutions just the right hints so I can do it myself.
This site is for managing content for a college professor who puts his course material online.
Here are my content types w/ definitions (only important fields + types show):
ct: Course
-> text: course_number (e.g. cis101)
ct: Lecture
-> noderef: course (i.e. the course this lecture is assigned to)
-> integer: lecture_number (e.g. 1)
ct: Lecture_Unit (a lecture is made up of units)
-> noderef: lecture (i.e. the lecture this lecture_unit is assigned to)
I would like to create a View that displays all Lecture_Units and filter them using URL arguments like so:
server/lectureunits/{course_number}/{lecture_number}
-or-
server/lectureunits/{course_number}/all **most important**
-or-
server/lectureunits/all/all