You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you navigate to an object in the admin page you'll see a VIEW ON SITE button in the top-right. Clicking this button gives Server Error (500). Running locally you get, for example Reverse for 'country_detail' not found. 'country_detail' is not a valid view function or pattern name. We should fix this button, or remove it.
Seems like a problem with the get_absolute_url method for the models
This includes adding the relevant view pages (list, detail, edit, create and delete) to the following apps:
The measurement app does not need views as they have their own dash apps to be managed and, in exceptional circumstances, via de Admin by admin who know what they are doing.
The text was updated successfully, but these errors were encountered:
If you navigate to an object in the admin page you'll see a VIEW ON SITE button in the top-right. Clicking this button gives
Server Error (500)
. Running locally you get, for exampleReverse for 'country_detail' not found. 'country_detail' is not a valid view function or pattern name.
We should fix this button, or remove it.Seems like a problem with the
get_absolute_url
method for the modelsThis includes adding the relevant view pages (list, detail, edit, create and delete) to the following apps:
The measurement app does not need views as they have their own dash apps to be managed and, in exceptional circumstances, via de Admin by admin who know what they are doing.
The text was updated successfully, but these errors were encountered: