how to put data on pages that is stored in its own folder.
What I'd like to have is Events (date, summary, clickable link) displayable on the main page and when clicked on it takes you to the events page to make a booking. I am not entirely sure how to configure the document types/templates/content to enable this. In the main menu there will be an Events menu option but this will take you to the Events page (general, list events).
Any thoughts on how best (best practice?) for structuring this and what I'd need to create?.
On the event itself i have made a usercontrol where the user can say yes I will join. This UserControl cretes the nodes below the event with the informations about the user.
how to put data on pages that is stored in its own folder.
What I'd like to have is Events (date, summary, clickable link) displayable on the main page and when clicked on it takes you to the events page to make a booking. I am not entirely sure how to configure the document types/templates/content to enable this. In the main menu there will be an Events menu option but this will take you to the Events page (general, list events).
Any thoughts on how best (best practice?) for structuring this and what I'd need to create?.
I would make the following documenttypes
homepage
event overviewpage
event detailpage
Add a marco + xslt to the eventoverviewpage masterpage which shows all the children of overviewpage ie the event detailpages.
On the homapage masterpage you can add another macro + xslt which also shows the children of the overviewpage.
You just need to figure out some xpath queries which you can use within your xslt's
not clear in my previous post maybe but the structure would be:
homepage
event overviewpage
event detailpage
First take a look on Peters Calendar
In our intranet we have a similiar events category. The site structure is like this:
Frontpage
- Events
--Event1
---User1
---User2
--Event2
---User4
---User1
On the frontpage we are showing the next events via xslt:
On the events page we are showing all events
On the event itself i have made a usercontrol where the user can say yes I will join. This UserControl cretes the nodes below the event with the informations about the user.
hth, Thomas
is working on a reply...