Tagged Questions

0
votes
1answer
25 views

How to set up Django admin.TabularInline on a table with a compount key.

I've essentially got two tables: Page(PK=url) and PageProperty(PK=url+name). Here is how I have my Models set up: class Page(model.Model): url = model.CharField(primary_key=True, …
0
votes
3answers
68 views

Django Admin: not seeing any app (permission problem?)

I have a site with Django running some custom apps. I was not using the Django ORM, just the view and templates but now I need to store some info so I created some models in one app and enabled the …
0
votes
1answer
31 views

Issue with ManyToMany Relationships not updating inmediatly after save

I'm having issues with ManytoMany Relationships that are not updating in a model when I save it (via the admin) and try to use the new value within a function attached to the post_save signal or …
0
votes
1answer
29 views

Foreign Key relation does not populate in Django admin

Using django 1.0.1 on windows xp and postgres database I have a very strange problem in the Django admin page. Using the model and admin below, the field "balance" does populate with objects from the …
0
votes
1answer
32 views

Displaying dates nicely in Django’s admin interface

With methods on your model that return boolean values, you can mark them as boolean so the admin's list displays show the pretty icons, like this example from the docs: class Person(models.Model): …
1
vote
3answers
43 views

Is there a way to express Django admin settings inside the models, instead of admin.py?

Talking about Django 1.1.1. I thought at one time (0.96) the kinds of things put inside of the admin.py file were part of an inner class of the model. There's a certain beauty in having all of …
0
votes
1answer
35 views

Django admin: Can’t add app to admin

I have installed Django on my host (I use their install version 1.1.1), all is working fine. I have created some apps and they are registered in my settings.py (I can verify this works when i visit …
2
votes
5answers
869 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 …
0
votes
1answer
21 views

Validate that atleast one modelfield has value in Django admin

Given the following model, how do I require that atleast one of the two fields has been given a value? class ZipUpload(models.Model): zip_file = models.FileField(upload_to="/tmp", blank=True, …
0
votes
2answers
152 views

Django: how to including inline model fields in the list_display?

I'm attempting to extend django's contrib.auth User model, using an inline 'Profile' model to include extra fields. from django.contrib import admin from django.contrib.auth.models import User from …
0
votes
1answer
52 views

django admin TinyMCE integration

This is weird: I have installed and configured django-tinymce, but it doesn't seem to work with django admin. this works fine with Safari: class ArticleAdmin(admin.ModelAdmin): …
0
votes
1answer
28 views

Skipping delete confirmation in Django Admin

What is the best way to skip the delete confirmation page in the Django admin and go straight to deleting the objects? Thank you!
0
votes
0answers
21 views

Prepopulating inlines based on the parent model in the Django Admin

I have two models, Event and Series, where each Event belongs to a Series. Most of the time, an Event's start_time is the same as its Series' default_time. Here's a stripped down version of the …
0
votes
1answer
23 views

How to restrict models foreign keys to foreign objects having the same property

Here is my example : We have printers. We can define page formats that are linked to a specific printer then we define workflows that select a starting format (first page added to the printing job), …
0
votes
1answer
46 views

How to implement objects modification trace

Hi there, With django admin, we have an history of who altered an object and when. I would like to add an "old value", "new value" to this to be able to roll back if needed. Plus I would like every …

1 2 3 4 5 21 next
15 30 50 per page