Questions tagged [django-admin-tools]

It's a collection of extensions and tools for the Django administration interface.

It contains a full featured and customizable dashboard (for the admin index page and the admin applications index pages), a customizable menu bar and tools to make admin theming easier.

117 questions
1
vote
1 answer

Django AUTHENTICATION AND AUTHORIZATION groups and permissions want to create verified users

Hi Djangonauts, I am new to Django please forgive any silly mistake in logic or code. Intro: I am building a web app in which members can write posts on a topic and offer courses on that topic. Example A member can write a blog…
1
vote
1 answer

django-admin-tools how to change the "logo" on login

I managed to change the menus and dashboard, but how to change the "logo" (Word Django) on login and admin page? See image: django-admin-tools Login
Sidon
  • 1,316
  • 2
  • 11
  • 26
1
vote
1 answer

How to show specific information to specific users using permissions in Django

I have a menu in my application (django-console menu) and I would like to restrict access to its elements (and also don't show the models) but Reports for regular users. If a user is superuser let him see everything ( Users, Inventory ... see…
user4312749
1
vote
0 answers

Django admin 'Now' button wrong timezone

I'm getting the browser time when I click the 'Now' button on the Django admin page for a DateTimeField. I did some research and it appears this was fixed in Django 1.7 (reference: http://bit.ly/1d2zqRa - I'm running 1.7.8). Here is the model in…
1
vote
3 answers

Change app label of groups in Django 1.5

I have extended the User model, but now the new user model is in an app called "account" which gives all models inside this app the app label "account". The Django model "Groups" still has the app label "Auth", so now models which all has something…
1
vote
0 answers

Django-admin-tools and missing list of actions

I installed in my django project django-admin-tools, quick instalation, without custom dashboard. After this every 'lists of custom actions' (django doc) of my models disappeared. Anyone know how to turn on this lists with django-admin-tools?
pmoniq
  • 951
  • 10
  • 24
1
vote
1 answer

django : send mail to users from admin panel

i am wondering how can i configure django admin to see a form, so the auth_user should send emails to subscribe users. What i have done: models.py from django.db import models from datetime import datetime class Mail(models.Model): …
Chris P
  • 2,059
  • 4
  • 34
  • 68
1
vote
1 answer

Django staff users closed groups

I'm developing a django project for small organizations. The organization can register to the site (marked as staff user by site admin), create new users and new services for other registered members. Members can register, login and see what the…
1
vote
2 answers

django-admin-tools markup problems

I try to install admin-tools for django. I've got strange css and it's evident that something is wrong. But what? Google and css analyzing didn't help. Screenshot Thanks! Update and solution: I did the homework and solved the problem. What I…
AlexanderLedovsky
  • 727
  • 1
  • 6
  • 18
1
vote
1 answer

django-admin-tools does not see some apps in dashboard

On devserver all works fine, but in production there are not some apps in admin dashboard. settings.py INSTALLED_APPS = ( 'admin_tools', 'admin_tools.theming', 'admin_tools.menu', 'admin_tools.dashboard', 'django.contrib.auth', …
un1t
  • 4,259
  • 2
  • 30
  • 33
1
vote
1 answer

Django-admin-tools media/CSS styles not loading

I am trying to deploy my Django project using mod_wsgi and Apache2 but I am not able to figure out why the admin CSS styles aren't loading. I have used Django-admin-tools as an App to enhance the looks of admin interface and its working pretty well…
Ali Raza Bhayani
  • 3,045
  • 26
  • 20
0
votes
2 answers

Django: django-admin-tools: adding custom js

I have installed django-admin-tools and created a dashboard.py in my project folder. Inside this file I have specified a media class: #myproject/dashboard.py class Media: css = ('',) js =…
Joseph Tura
  • 6,290
  • 8
  • 47
  • 73
0
votes
1 answer

Search with parent foreignkey, grandparent foreignkey in django-admin

I wanna be able to search a product with the category that isnt directly linked to it but the category is grandfather or great_great grandfather and so on above on the category tree of the category that is actually linked to the product itself. The…
0
votes
0 answers

missing an object auth when overrode the function get_app_list() from- django.contrib.admin.AdminSite

I was trying to rearrange the order of models and apps displayed in Django admin panel. For that I overrode the function get__app__list() function which is defined in Django package mentioned below. from django.contrib.admin import AdminSite class…
0
votes
0 answers

Issue with "delete" functionality in Django admin inline formset

I'm experiencing an issue with the "delete" functionality in my Django admin inline formset. I have a custom template for rendering the formset, and I've added a element with the class "delete" to allow users to delete rows. However, the delete…