Modifies the stock Django-Administration interface to fit my ideas a little bit better.
Project description
Django-mkadmin
==============
Modifies the stock Django-Administration interface to fit my ideas a little
bit better.
MKADMIN_CREATE = [
'blog.Post',
# 'blog', # Take all models from the blog app.
'chet.Album',
]
MKADMIN_DASHBOARD = [
('mkweb.mkadmin.AtAGlance', {
'models': ['blog.Post', 'chet.Album', 'chet.Photo'],
}),
('mkweb.mkadmin.AllApps', {
}),
('mkweb.mkadmin.RecentActions', {
}),
('mkweb.mkadmin.QuickDraft', {
}),
('mkweb.mkadmin.Feed', {
'url': 'http://www.feinheit.ch/news/feed/',
}),
]
==============
Modifies the stock Django-Administration interface to fit my ideas a little
bit better.
MKADMIN_CREATE = [
'blog.Post',
# 'blog', # Take all models from the blog app.
'chet.Album',
]
MKADMIN_DASHBOARD = [
('mkweb.mkadmin.AtAGlance', {
'models': ['blog.Post', 'chet.Album', 'chet.Photo'],
}),
('mkweb.mkadmin.AllApps', {
}),
('mkweb.mkadmin.RecentActions', {
}),
('mkweb.mkadmin.QuickDraft', {
}),
('mkweb.mkadmin.Feed', {
'url': 'http://www.feinheit.ch/news/feed/',
}),
]