How to add app item to main django admin site menu without creating any database tables. So then i can just overwrite admin template for this app?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can add
admin/foo/urls to your own views in your URLConf. See “Creating Custom Admin Views” here: http://www.djangobook.com/en/1.0/chapter17/Now you just need to add links to it. Override your favorite admin template, and add the link over there.