moves each of the template files we are using into a subdirectory (apps/org/templates/dashboard.html becomes apps/org/templates/org/dashboard.html), so that apps don’t accidentally use other apps’ template files, because they were found first. Previously, both the org dashboard page and member dashboard page were using apps/org/templates/dashboard.html, since the views files only specified dashboard.html for the template name.
moves a test class and a factory into the common app, since they will likely be common things used in apps throughout the project
This pull request:
apps/org/templates/dashboard.html
becomesapps/org/templates/org/dashboard.html
), so that apps don’t accidentally use other apps’ template files, because they were found first. Previously, both the org dashboard page and member dashboard page were usingapps/org/templates/dashboard.html
, since the views files only specifieddashboard.html
for the template name.common
app, since they will likely be common things used in apps throughout the project