Here's my scenario.
I have a view to review the "summary" of all "projects", which consists of several charts and tables and stuff like that,
and I need a page to review the summary of one project specified by its "id",
both pages has exactly same layouts and structure
so I need to map projects/summary
and projects/:id/summary
to a single page comp.
How do I arrange my PAGES dir to make that happen?
P.S. I don't think projects/summary/:id
will be a good solution because I believe a projectId
should only follow "projects", not a name of any other resource models, e.g. "summary".