Tagged Questions
Django's built-in, automatic admin interface. (django.contrib.admin)
39
votes
5answers
14k views
Custom Filter in Django Admin
How can I add a custom filter to django admin (the filters that appear on the right side of a model dashboard)? I know its easy to include a filter based on a field of that model, but what about a ...
22
votes
3answers
7k views
Django admin - inline inlines (or, three model editing at once)
I've got a set of models that look like this:
class Page(models.Model):
title = models.CharField(max_length=255)
class LinkSection(models.Model):
page = models.ForeignKey(Page)
title = ...
20
votes
4answers
5k views
Tying in to Django Admin's Model History
The Setup:
I'm working on a Django application which allows users to create an object in the database and then go back and edit it as much as they desire.
Django's admin site keeps a history ...
19
votes
1answer
18k views
Overriding the save method in Django ModelForm
I'm having trouble overriding a modelform save method. This is the error I'm receiving:
Exception Type: TypeError
Exception Value:
save() got an unexpected keyword argument 'commit'
My ...
18
votes
7answers
12k views
Getting Django admin url for an object
Before Django 1.0 there was an easy way to get the admin url of an object, and I had written a small filter that I'd use like this: <a href="{{ object|admin_url }}" .... > ... </a>
...
17
votes
10answers
7k views
Resize fields in Django Admin
Django tends to fill up horizontal space when adding or editing entries on the admin, but, in some cases, is a real waste of space, when, i.e., editing a date field, 8 characters wide, or a CharField, ...
17
votes
5answers
4k views
Django-Admin: CharField as TextArea
I have
class Cab(models.Model):
name = models.CharField( max_length=20 )
descr = models.CharField( max_length=2000 )
class Cab_Admin(admin.ModelAdmin):
ordering = ('name',)
...
16
votes
3answers
3k views
Django admin: how to sort by one of the custom list_display fields that has no database field
# admin.py
class CustomerAdmin(admin.ModelAdmin):
list_display = ('foo', 'number_of_orders')
# models.py
class Order(models.Model):
bar = models.CharField[...]
customer = ...
15
votes
4answers
4k views
Default filter in Django admin
How can I change the default filter choice from 'ALL'? I have a field named as status which has three values: activate, pending and rejected. When I use list_filter in Django admin, the filter is by ...
15
votes
3answers
11k views
Default value for field in Django model
Suppose I have a model:
class SomeModel(models.Model):
id = models.AutoField(primary_key=True)
a = models.CharField(max_length=10)
b = models.CharField(max_length=7)
Currently I am ...
12
votes
2answers
9k views
Django theme/skin repository
Is there some place of freely available themes/skins for standard Django apps? I mean the typical stuff containing footer, header, etc.
12
votes
3answers
4k views
Adding reports to Django's admin
I'm looking to add an extra set of pages to my auto-generated admin site. I want to generate reports off my models and some logs surrounding it. The actual generating isn't the issue.
How do I:
...
12
votes
2answers
4k views
Customizing an Admin form in Django while also using autodiscover
I want to modify a few tiny details of Django's built-in django.contrib.auth module. Specifically, I want a different form that makes username an email field (and email an alternate email address. ...
12
votes
4answers
3k views
Django Admin's “view on site” points to example.com instead of my domain
I added a get_absolute_url function to one of my models.
def get_absolute_url(self):
return '/foo/bar'
The admin site picks it up and adds a "view on site" link to the detail page for that ...
11
votes
3answers
524 views
How should I represent a bit flags int field in django admin?
I have a data model with a bitfield defined something like this:
alter table MemberFlags add column title varchar(50) not null default '';
alter table MemberFlags add column value integer( 3) not ...
11
votes
2answers
4k views
Foreign keys in django admin list display
If a django model contains a foreign key field, and if that field is shown in list mode, then it shows up as text, instead of displaying a link to the foreign object.
Is it possible to automatically ...
11
votes
4answers
2k views
Django admin, hide a model
Hello
At the root page of the admin site where registered models appear, I want to hide several models that are registered to the Django admin.
If I directly unregister those, I am not able to add ...
11
votes
2answers
2k views
Multiplue ModelAdmins/views for same model in Django admin
How can I create more than one ModelAdmin for the same model, each customised differently and linked to different URLs?
Let's say I have a Django model called Posts. By default, the admin view of ...
11
votes
3answers
7k views
Django auto_now and auto_now_add
For Django 1.1.
I have this in my models.py:
class User(models.Model):
created = models.DateTimeField(auto_now_add=True)
modified = models.DateTimeField(auto_now=True)
When updating a row ...
11
votes
3answers
1k views
Unique BooleanField value in Django?
Suppose my models.py is like so:
class Character(models.Model):
name = models.CharField(max_length=255)
is_the_chosen_one = models.BooleanField()
I want only one of my Character instances ...
10
votes
1answer
2k views
Django Admin - Disable the 'Add' action for a specific model
I have a django site with lots of models and forms. I have many custom forms and formsets and inlineformsets and custom validation and custom querysets. Hence the add model action depends on forms ...
10
votes
7answers
2k views
Django Admin app or roll my own?
I'm just starting to use Django for a personal project.
What are the pros and cons of using the built-in Admin application versus integrating my administrative functions into the app itself (by ...
9
votes
4answers
1k views
Adding model-wide help text to a django model's admin form
In my django app, I would like to be able to add customized help text to the admin change form for some of my models. Note I'm not talking about the field specific help_text attribute that I can set ...
9
votes
4answers
2k views
Can Django admin handle a one-to-many relationship via related_name?
The Django admin happily supports many-to-one and many-to-many relationships through an HTML <SELECT> form field, allowing selection of one or many options respectively. There's even a nice ...
9
votes
2answers
1k views
Tutorials on writing custom Django widgets?
I'm trying to modify the Django Admin interface. I need a custom type of textbox that does some pre/post processing on the text. If I understand correctly, a custom widget is the way to go about this.
...
9
votes
6answers
7k views
Filter ManyToMany box in Django Admin
I have a object with a many-to-many relation with another object.
In the Django Admin this results in a very long list in a multiple select box.
I'd like to filter the ManyToMany relation so I only ...
9
votes
2answers
4k views
Is there a way to auto-increment a Django field with respect to a foreign key?
I'm currently coding a site in Django (because you can never learn too many frameworks!), and am wondering if there's a way to auto-increment an object with respect to a related object. So for ...
9
votes
6answers
1k views
Valid use case for django admin?
I want to build a django site where a certain group of trusted users can edit their profile information. Does it make sense to have each trusted user go through the django admin interface? I'd only ...
8
votes
3answers
151 views
get the version of django for application
I am starting a new( actually very old) project which I know is in django. I am getting lost knowing the exact version of django it has been build upon. Is there any way I can know the version of ...
8
votes
3answers
2k views
Django InlineModelAdmin: Show partially an inline model and link to the complete model
Hi everybody
I defined several models: Journals, volumes, volume_scanInfo etc.
A journal can have more volumes and a volume can have more scanInfo.
What I want to do is:
in the admin page of ...
8
votes
2answers
3k views
Django Admin: OneToOne Relation as an Inline?
I am putting together the admin for a satchmo application. Satchmo uses OneToOne relations to extend the base Product model, and I'd like to edit it all on one page.
It is possible to have a OneToOne ...
8
votes
1answer
4k views
Django admin and showing thumbnail images
I'm trying to show thumbnail images in Django admin, but I can only see the path to the images, but not the rendered images. I don't know what I'm doing wrong.
Server media URL:
from django.conf ...
8
votes
4answers
5k views
How can I MODIFY django to create “view” permission?
I've recently started using django to administer a large existing application that was grown organically over the years using twisted.web. I started experimenting with django and it's automatic admin ...
8
votes
3answers
4k views
Inline formset in Django - removing certain fields
I need to create an inline formset which
a) excludes some fields from MyModel being displayed altogether
b) displays some some fields MyModel but prevents them from being editable.
I tried using ...
7
votes
5answers
340 views
django-admin: Add extra row with totals
I'm using the standard django admin module to display a list of rows. One of the columns is a numerical field. I'd like to display an extra 'totals' row that has most of the columns as blank, except ...
7
votes
2answers
200 views
Django: how to change the choices of AdminTimeWidget
The AdminTimeWidget rendered in admin for a DateTimeField displays an icon of a clock and when you click you have the choice between: "Now Midnight 6:00 Noon".
How can I change these choices to "16h ...
7
votes
6answers
2k views
Rails Alternative to The Django admin panel / CRUD View Generator?
I am currently trying to decide between Rails and Django..
At the moment the I'm finding ruby much more elegant so my only reason for considering Django is the admin panel..
I have no experience of ...
7
votes
3answers
2k views
Password field in Django model
I'm trying to create a model where I can store usernames and passwords for other applications. How can I set a password field in Django so that it is not in plain text in admin? Thanks in advance.
7
votes
1answer
403 views
Ordered ManyToManyField that can be used in fieldsets
I've been working through an ordered ManyToManyField widget, and have the front-end aspect of it working nicely:
Unfortunately, I'm having a great deal of trouble getting the backend working. The ...
7
votes
4answers
2k views
Django: How to get current user in admin forms
In Django's ModelAdmin I need to display forms customized according to the permissions an user has. Is there a way of getting the current user object into the form class, so that i can customize the ...
7
votes
5answers
1k views
What custom themes are there for Django Admin?
Are there any custom themes for Django's admin app, other than django-grappelli?
7
votes
3answers
794 views
Django - Extending another apps ModelAdmin?
Is there a way to extend another apps ModelAdmin?
I have a project that uses functionality offered by django.contrib.comments.
The CommentsAdmin ModelAdmin class has:
actions = ["flag_comments", ...
7
votes
4answers
3k views
Django custom command and cron
I want my custom made Django command to be executed every minute. However it seems like python /path/to/project/myapp/manage.py mycommand doesn't seem to work while at the directory python manage.py ...
7
votes
1answer
2k views
Django, choices option field
i have a question about the choices option field.
i have this field:
SECUENCIA = (
('1','1'),
('2','2'),
('3','3'),
)
secuencia = ...
7
votes
3answers
543 views
Conditional Django Middleware (or how to exclude the Admin System)
I want to use some middleware I wrote across the whole of my site (large # of pages, so I chose not to use decorators as I wanted to use the code for all pages). Only issue is that I don't want to use ...
7
votes
2answers
2k views
Auto-populating created_by field with Django admin site
I want to use the Django admin interface for a very simple web application but I can't get around a problem that should not be that hard to resolve ..
Consider the following:
class ...
6
votes
1answer
193 views
Django admin search/filter functionality as a page table
I was wondering if there is a way to use the power of Django Admin's filtering/ordering/paginating/search capabilities in a regular view.
What I mean is that I have a model, some fields on it. I'd ...
6
votes
3answers
225 views
Paginator for inline models in django admin
I have this simple django model consisting of an sensor and values for the specific sensor.
The number of values per Pyranometer is high (>30k). Is it somehow possible to paginate PyranometerValues by ...
6
votes
1answer
967 views
Django. You don't have permission to edit anything
I created a little app a while ago. I created admin.py and used admin.site.register(MenuEntry) to add the class to admin console. It showed the items of that class just fine.
Then I began working on ...
6
votes
1answer
274 views
How to force-save an “empty”/unchanged django admin inline?
I have some inlines in one of my admin models which have default values which likely won't need to be changed when adding a new instance with "Add another ...". Unfortunately django won't recognize ...