I have django script with administration page /admin
Now I want to make another page /customdata
for administration purpose.
However in this page , customdata
is not related to specific model, it just shows the system overview data.
It is just the normal template.
Now I have two ideas.
Making independent
www.myexample.com/customdata
page and set authentication.Linking this under
www.myexample.com/admin/customdata
and treat it as admin page
2 sounds usefule to me, because pages for administration purpose should be togetter.
However is it possible? or is it not good behaivor?