7
votes
6answers
973 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 …
6
votes
2answers
136 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 …
6
votes
6answers
713 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 …
6
votes
3answers
946 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:
…
6
votes
2answers
914 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. …
6
votes
5answers
652 views
Djang-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',)
…
5
votes
4answers
1k views
django admin filter
how can i change the default filter choice from 'ALL'.I have a field named as 'status' which has three values :- 'activate','pending','rejected'.when i use list_filter in django_admin ,the filter is …
5
votes
3answers
930 views
Django admin - inline inlines (or, three model editing at once)
Hi,
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)
…
4
votes
3answers
432 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 …
4
votes
2answers
1k 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 …
4
votes
2answers
577 views
Django Admin Template Overriding: Displaying checkboxselectmultiple widget
Have 2 tables Domain and Group having one to many relationship.
These tables have many to many relationship with User table
On the User admin interface I am rendering the Group and Domain as …
4
votes
4answers
1k views
Django - How to preopopluate admin form fields
I know that you can prepopulate admin form fields based on other fields. For example, I have a slug field that is automatically populated based on the title field.
However, I would also like to make …
4
votes
2answers
872 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 …
3
votes
2answers
107 views
Where is a good tutorial how to write custo, django widgets?
I'm trying to modify the adimn 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.
Where …
3
votes
4answers
728 views
How to limit choice field options based on another choice field in django admin
I have the following models:
class Category(models.Model):
name = models.CharField(max_length=40)
class Item(models.Model):
name = models.CharField(max_length=40)
category = …
