Often when building web applications we need to be able to perform multiple actions (View, Edit, Register) for a single resource (Event). Each URL provides different information on that resource:
/event/2
- Event Details (information)/event/2/register
- Event Register (to signup for the event)/event/2/edit
- Event Edit (to edit the event)Implemen