active questions tagged django+django-admin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T18:21:16Zhttp://stackoverflow.com/feeds/tag/django+django-adminhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1812806/allow-null-in-foreign-key-to-user-django0Allow null in foreign key to user. Djangobarin2009-11-28T15:33:26Z2009-11-28T21:34:14Z
<p>I have this model</p>
<pre><code>class Vacancy(models.Model):
user = models.ForeignKey(User, null=True, blank=True, default = None)
name = models.CharField(max_length=64)
</code></pre>
<p>When in admin i try to creat a vacancy without a user. And it throws an error " club_vacancy.user_id may not be NULL".
Am i doing something wrong?</p>
http://stackoverflow.com/questions/1813637/django-how-to-generate-an-admin-panel-without-models1Django, how to generate an admin panel without models?thaorius2009-11-28T20:08:02Z2009-11-28T21:11:35Z
<p>Hi, I'm building a rather large project, that basically consists of this:</p>
<p>Server 1:
Ice based services.
Glacier2 for session handling.
Firewall allowing access to Glacier2.</p>
<p>Server 2:
Web interface (read, public) for Ice services via Glacier2.
Admin interface for Ice services via Glacier 2.</p>
<p>The point I'm concerned with is the web interface. I want to use Django, because it's both written in python and has that incredibly useful automatic admin panel generator.</p>
<p>The web interface doesn't access any database. It connects to an Ice service on Server #1 via the Glacier2 router and uses the API exposed by those services to manipulate data.</p>
<p>And as you probably know, the admin generation in Django depends on the use of Django's ORM; which I'm not using since I have no database to access.</p>
<p>So I need to generate the admin panel, but, instead of having an standard data access like the ORM normally does, I need to intercept any "db-access" calls and transform them into Ice service calls, and then take the service's output (if any), transform it into whatever the ORM normally returns and return control to Django.</p>
<p>Anyone knows how I could do this? what would I need to subclass? Any specific ideas?</p>
<p>Thanks for your time.</p>
http://stackoverflow.com/questions/1810745/django-cannot-assign-none-does-not-allow-null-values0Django, Cannot assign None, does not allow null valuesvedran2009-11-27T21:54:09Z2009-11-27T21:58:41Z
<p>i have this models.py</p>
<pre><code>import datetime
from django.db import models
from tinymce import models as tinymce_models
from filebrowser.fields import FileBrowseField
class ItemWithMedia(models.Model):
created = models.DateTimeField(auto_now_add=True)
modified = models.DateTimeField(auto_now=True)
class Actual(ItemWithMedia):
published = models.DateField('Published')
title_hr = models.CharField('(hr)', max_length=200)
title_en = models.CharField('(en)', max_length=200)
body_text_hr = models.TextField('(hr)')
body_text_en = models.TextField('(en)')
def __unicode__(self):
return self.title_hr
class Meta:
verbose_name = "Aktualno"
verbose_name_plural = "Aktualni"
ordering = ['-published']
</code></pre>
<p>and i get this error when i try to create new item in admin site:
Cannot assign None: "Actual.published" does not allow null values.</p>
<p>what could be the problem?</p>
http://stackoverflow.com/questions/1806976/what-to-use-for-tagging-in-django-1-10What to use for tagging in Django 1.1Clarence2009-11-27T05:47:30Z2009-11-27T09:41:33Z
<p>Unless I'm missing something, it seems django-tagging (0.3) doesnt work on Django 1.1.x. I was having issues then search around and it seems to be the general concensious.</p>
<p>What are other people using? Just in case here is all I'm doing.</p>
<pre><code>class Article(models.Model):
title = models.CharField(max_length=200)
tags = TagField()
tagging.register(Article)
class ArticleAdmin(admin.ModelAdmin)
fieldsets = (
(None, { 'fields': ('title', 'tags',) }),
admin.site.register(Article, ArticleAdmin)
</code></pre>
<p>I have a script that added a bunch of tags and they are in the DB without issue. But if I visit the admin, I get</p>
<p>Tags: <code>[<Tag: []>]</code></p>
<p>I don't need advanced features. I just want to have an admin field where I can type in tags, to some related searches based on tags not a whole lot else. Thats about it.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1806424/hot-to-add-the-ability-to-search-in-userprofile-to-useradmin-in-django-searchf1Hot to add the ability to search in UserProfile to UserAdmin in Django | search_fields w/ ForeignKeyJannis2009-11-27T01:40:00Z2009-11-27T09:20:13Z
<p>Hi,</p>
<p>I'm using Django's User management in combination with UserProfiles that are linked to the User model with ForeignKeys. Now, I'd like to make fields from the users' profiles searchable from the UserAdmin.</p>
<p>My best guess was to user something like this:</p>
<pre><code>class UserAdmin(auth.admin.UserAdmin):
def field_name(self, obj):
return obj.get_profile().name
list_display = ('field_name',)
search_fields = ('field_name',)
</code></pre>
<p>Whereas list_display works fine, search_fields gives me an error message when submitting a query: *Cannot resolve keyword 'field_name' into field. Choices are: [...]*</p>
<p>Do you have any clue on how to do this? Thank you in advance.</p>
http://stackoverflow.com/questions/1796776/inline-multiple-one-to-one-fields-in-django-admin0Inline multiple one-to-one fields in Django adminViliam2009-11-25T13:02:12Z2009-11-26T22:43:43Z
<p>I cannot get the admin module to inline two same field models in one-to-one relations. To illustrate it, I've made the following example, a model Person uses two addresses:</p>
<pre><code>class Client(models.Model):
# Official address
official_addr = models.OneToOneField(Address, related_name='official')
# Temporary address
temp_addr = models.OneToOneField(Address, related_name='temp')
</code></pre>
<p>I'd like to enable adding persons through Django admin interface with both addresses inlined. So far I have this code for admin configuration:</p>
<pre><code>class ClientInline(admin.StackedInline):
model = Client
fk_name = "official_addr"
class ClientInline2(admin.StackedInline):
model = Client
fk_name = "temp_addr"
class AddressAdmin(admin.ModelAdmin):
inlines = [ClientInline,ClientInline2]
admin.site.register(Address, AddressAdmin)
</code></pre>
<p>It works perfectly for the first address, but with both addresses the interface is acting crazy - duplicating Client's fields instead of addresses. What I am doing wrong? It there a better way to have two same models inlined?</p>
http://stackoverflow.com/questions/1800008/django-admin-edit-selection-action0Django Admin "Edit Selection" Action?magneticMonster2009-11-25T21:17:15Z2009-11-26T21:44:40Z
<p>I'd like to write a django-admin action (for use when the user selects zero or more rows) that will allow them to edit the selected items as a group. I only need to edit one of the items in the model (the "room") at a time, but I don't want to have to go through all 480 of my objects and manually edit them one-by-one.</p>
<p>Is there a way to throw up an interstitial page that allows the user to edit the items as a group?</p>
http://stackoverflow.com/questions/1565812/the-default-delete-selected-admin-action-in-django1the default "delete selected" admin action in djangoHellnar2009-10-14T11:58:06Z2009-11-26T13:06:03Z
<p>Hello, how can I remove or change the verbose name of the default admin action "delete selected X item" at the django admin panel?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1680211/django-limitchoicesto-at-circular-relation0Django limit_choices_to at circular relationSam2009-11-05T12:21:36Z2009-11-25T09:26:40Z
<p>Hi,</p>
<p>I've implemented a circular OneToMany relationship at a Django model and tried to use the limit_choices_to option at this very same class.</p>
<p>I can syncdb without any error or warning but the limit is not being respected.
Using shell I'm able to save and at admin I receive the error message:</p>
<blockquote>
<p>"Join on field 'type' not permitted.
Did you misspell 'neq' for the lookup
type?"</p>
</blockquote>
<pre><code>class AdministrativeArea(models.Model):
type = models.CharField(max_length=1, choices=choices.ADMIN_AREA_TYPES)
name = models.CharField(max_length=60, unique=True)
parent = models.ForeignKey('AdministrativeArea',
null=True,
blank=True,
limit_choices_to = Q(type__neq='p') & Q(type__neq=type)
)
</code></pre>
<p>The basic idea for the limit_choices_to option is to guarantee that any type "p" cannot be parent ofr any other AdministrativeArea AND the parent cannot be of the same type as the current AdministrativeArea type.</p>
<p>I'm pretty new to Django ... what am I missing?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1789573/column-field-level-permissions-in-django-admin-site0Column/field level permissions in Django admin site?ccnet2009-11-24T11:48:59Z2009-11-24T11:59:22Z
<p>Is it possible to implement column level permissions per user in the Django admin site?</p>
<p>Its a small project and I only need two groups of permissions.</p>
<p>In the docs I cant find anything out of the box however I was wondering if its possible to create two admin sites and use separate ModelAdmin.exclude or ModelAdmin.fields for each one? I know it's probably a stretch though.</p>
<p>I tried looking around too but I only found row level permissions (django-granular-permissions).</p>
<p>I know it can be done quite easily in my own views by storing the permissions but I was wondering if there was a way to use the admin site or if there is another app out there.</p>
http://stackoverflow.com/questions/1788274/django-serving-admin-media-files0Django: Serving admin media filesOleg Tarasenko2009-11-24T06:41:37Z2009-11-24T06:50:12Z
<p>Hi!</p>
<p>I am trying to serve static files from another domain (sub domain of current domain).
To serve all media files I used this settings:</p>
<blockquote>
<p>MEDIA_URL =
'<a href="http://media.bud-inform.co.ua/" rel="nofollow">http://media.bud-inform.co.ua/</a>'</p>
</blockquote>
<p>So when in template I used </p>
<blockquote>
<p>{{ MEDIA_URL }}</p>
</blockquote>
<p>it was replace with the setting above. Now I am trying to serve admin media files from the same subdomain, I changed the settings this way:</p>
<blockquote>
<p>ADMIN_MEDIA_PREFIX =
'<a href="http://media.bud-inform.co.ua/admin%5Fmedia/" rel="nofollow">http://media.bud-inform.co.ua/admin%5Fmedia/</a>',</p>
</blockquote>
<p>and expected that all calls to media from my admin site will be made to this url.... But actually it didn't work this way, I still see paths to CSS made as following: </p>
<blockquote>
<p><a href="http://bud-inform.co.ua/media/css/login.css" rel="nofollow">http://bud-inform.co.ua/media/css/login.css</a></p>
</blockquote>
<p>Could you suggest how to serve admin media files correctly </p>
http://stackoverflow.com/questions/1760797/django-valueerror-at-admin0Django ValueError at /admin/mjaz2009-11-19T03:57:12Z2009-11-21T02:56:23Z
<p>Hello,</p>
<p>I am running Django with mod_python on a Red Hat Linux box in production. A little while ago, for a reason unknown to me, the admin stopped working, throwing a 500 error. The error is as follows:</p>
<pre><code>ValueError at /admin/
Empty module name
Request Method: GET
Exception Type: ValueError
Exception Value:
Empty module name
Exception Location: /usr/local/lib/python2.6/site-packages/django/utils/importlib.py in import_module, line 35
Python Executable: /usr/bin/python
Python Version: 2.6.2
</code></pre>
<p>Has anyone encountered this before? I have absolutely no idea how to fix this problem.</p>
<p>Thank you for any help.</p>
http://stackoverflow.com/questions/1766864/django-admin-add-collapse-to-a-fieldset-but-have-it-start-expanded0Django Admin - add collapse to a fieldset, but have it start expandedAlex Jillard2009-11-19T21:58:13Z2009-11-20T08:27:43Z
<p>Is there a way to make a fieldset collapsible, but start expanded? When you add collapse to the fieldset classes, it gets the functionality but starts collapsed. I've taken a look at the JS that shows/hides the fieldset content, but it doesn't look like there's anything in there to do what I'd like it to, so I'm assuming I'll have to roll my own. Just wanted to check before I went through that effort.</p>
http://stackoverflow.com/questions/687829/django-overriding-getform-to-customize-admin-forms-based-on-request0Django - Overriding get_form to customize admin forms based on requestandybak2009-03-26T22:38:00Z2009-11-19T14:16:34Z
<p>I've tried various methods to achieve this.</p>
<p>I decided against overriding formfield_for_dbfield as it's doesn't get a copy of the request object and I was hoping to avoid the thread_locals hack.</p>
<p>I settled on overriding get_form in my ModelAdmin class and tried the following:</p>
<pre><code>class PageOptions(admin.ModelAdmin):
def get_form(self, request, obj=None, **kwargs):
if request.user.is_superuser:
self.fieldsets = ((None, {'fields': ('title','name',),}),)
else:
self.fieldsets = ((None, {'fields': ('title',),}),)
return super(PageOptions,self).get_form(request, obj=None, **kwargs)
</code></pre>
<p>When I print fieldsets or declared_fieldsets from within get_form I get None (or whatever I set as an initial value in PageOptions).</p>
<p>Why doesn't this work and is there a better way to do this?</p>
http://stackoverflow.com/questions/1758805/problems-with-updating-records-in-django-admin1Problems with updating records in django-adminGrumpyCanuck2009-11-18T20:24:20Z2009-11-18T21:59:32Z
<p>I'm using Django (specifically django-admin) to be the admin panel for a site that uses PHP for client-facing features. I've been messing around making the admin look exactly the way I want and so far so good. However, I've run into a few problems that I need solving.</p>
<p>Here's the models that I'm working with:</p>
<pre><code>class Permissions(models.Model):
id = models.IntegerField(primary_key=True)
league_key = models.CharField(max_length=15)
commissioner_id = models.ForeignKey(Accounts, db_column='commissioner_id',
to_field='id')
status = models.IntegerField()
key = models.CharField(max_length=50)
publisher_key = models.CharField(max_length=25)
publisher_display_name = models.CharField(max_length=50)
base_league = models.ForeignKey('self', db_column='id')
share = models.IntegerField()
default_fixture_key = models.CharField(max_length=50)
def __unicode__(self):
return self.publisher_key + ' / ' + self.league_key
class Meta:
db_table = u'permissions'
verbose_name = 'Permissions'
verbose_name_plural = 'Permissions'
class PermissionsAdmin(admin.ModelAdmin):
list_display = ('league_key', 'publisher_key', 'commissioner_id', 'status',
'base_league', 'share', 'default_fixture_key')
list_display_links = ('league_key','commissioner_id', 'base_league')
exclude = ('id',)
</code></pre>
<p>First problem is that the admin form for editing an existing record is marking one of the fields as required. How do I tell the django-admin when a field is required and not required?</p>
<p>Second problem I am running into is that when I tell it to Save this record, I get the following error: duplicate key value violates unique constraint "permissions_pkey". That leads me to think that Django is not doing an update, it's trying to do an INSERT</p>
<p>It also occurred to me that this might be a problem related to Postgresql. permissions_pkey is a constraint on that table, keeping track of the sequence being used for auto-incrementing the id for that table</p>
<p>While the Django docs are awesome, they don't seem to have the info I need to figure this out.</p>
<p>(EDIT: Digging into the stack trace, I found this awesome little nugget:</p>
<pre><code>sql
'UPDATE "permissions" SET "league_key" = E\'l.1258472565 \', "commissioner_id" = 7,
"status" = 0, "key" = E\'cfcd208495d565ef66e7dff9f98764da \',
"publisher_key" = E\'chrishartjes.com \',
"publisher_display_name" = E\'Chris Hartjes Free Press \',
"id" = 744, "share" = 0,
"default_fixture_key" = E\'\' WHERE "permissions"."id" = 745 '
</code></pre>
<p>which leads me to think that my little ForeignKey to itself entry is causing the problem)</p>
http://stackoverflow.com/questions/1667379/how-should-i-store-and-retrieve-images-with-django-on-appengine0how should i store and retrieve images with django on appengine?Danielle 2009-11-03T13:38:06Z2009-11-18T15:39:37Z
<p>I'm using appengine patch with django 1.1 (came with appengine patch).
I have a page with multiple columns and multiple files.
In the admin I want to be able to upload an image and write text in a column like so:</p>
<pre><code>This is the sory of bugs bunny ...
<img src="/pages/file/agphZXAtc2FtcGxlchALEgpwYWdlc19maWxlGAUM/" alt="didnt work" />
some more text about bugs bunny ...
</code></pre>
<p>(where get_absolute_url shows me /pages/file/agphZXAtc2FtcGxlchALEgpwYWdlc19maWxlGAUM/)</p>
<p>My trouble is getting the image to be rendered on the page, the above shows 'didnt work' instead of rendering the image.
I can go to the detail pages of page, column and file though.
Have I not done the models correctly, does the app.yaml need something, should i not be passing a template for the file's generic url?</p>
<h2>My urls.py:</h2>
<pre><code>urlpatterns += patterns('',
url(r'^index/$', direct_to_template,
{'template': 'base.html'}, name="main-view"),
url(r'^pages/page/(?P<object_id>.+)/$', object_detail,
{'queryset': Page.all(),
'template_name': 'pages_page_detail.html'}, name="pages_page_detail_view"),
url(r'^pages/column/(?P<object_id>.+)/$', object_detail,
{'queryset': Column.all(),
'template_name': 'pages_column_detail.html'}, name="pages_column_detail_view"),
url(r'^pages/file/(?P<object_id>.+)/$', object_detail,
{'queryset': File.all(),
'template_name': 'pages_file_detail.html'}, name="pages_file_detail_view"),
url(r'^pages/$', object_list,
{'queryset': Page.all(), 'paginate_by': 3, 'template_name': 'pages_page_index.html'}, name="page_index_view"),
)
</code></pre>
<h2>My models.py:</h2>
<pre><code>class Page(db.Model):
"""Page model."""
title = db.StringProperty(_('title'), required=True)
author = db.ReferenceProperty(User)
status = db.StringProperty(_('status'), choices=[_('draft'),
_('public'),
_('hidden'),
])
created = db.DateTimeProperty(_('created'))
modified = db.DateTimeProperty(_('modified'))
non_indexable = db.BooleanProperty(_('hide from index'))
def __unicode__(self):
return '%s' % self.title
@permalink
def get_absolute_url(self):
return ('pages_page_detail_view', [self.key()])
class File(db.Model):
"""File model."""
title = db.StringProperty(_('title'))
data = db.BlobProperty()
added = db.DateTimeProperty(_('added'))
page = db.ReferenceProperty(Page)
#content_type = FakeModelProperty(ContentType, required=True)
def __unicode__(self):
return '%s' % self.get_absolute_url()
@permalink
def get_absolute_url(self):
return ('pages_file_detail_view', [self.key()])
class Column(db.Model):
"""Column model."""
title = db.StringProperty(_('title'))
data = db.TextProperty(_('data'))
page = db.ReferenceProperty(Page)
def __unicode__(self):
return '%s' % self.title
@permalink
def get_absolute_url(self):
return ('pages_column_detail_view', [self.key()])
</code></pre>
<h2>my app.yaml:</h2>
<pre><code>application: aep-sample
version: 1
runtime: python
api_version: 1
default_expiration: '3650d'
handlers:
- url: /remote_api
script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py
secure: optional
login: admin
- url: /media
static_dir: _generated_media
secure: optional
- url: /.*
script: common/appenginepatch/main.py
secure: optional
</code></pre>
http://stackoverflow.com/questions/796466/how-to-limit-choice-field-options-based-on-another-choice-field-in-django-admin1How to limit choice field options based on another choice field in django adminumnik7002009-04-28T06:28:14Z2009-11-17T15:52:42Z
<p>I have the following models:</p>
<pre><code>class Category(models.Model):
name = models.CharField(max_length=40)
class Item(models.Model):
name = models.CharField(max_length=40)
category = models.ForeignKey(Category)
class Demo(models.Model):
name = models.CharField(max_length=40)
category = models.ForeignKey(Category)
item = models.ForeignKey(Item)
</code></pre>
<p>In the admin interface when creating a new Demo, after user picks category from the dropdown, I would like to limit the number of choices in the "items" drop-down. If user selects another category then the item choices should update accordingly. I would like to limit item choices right on the client, before it even hits the form validation on the server. This is for usability, because the list of items could be 1000+ being able to narrow it down by category would help to make it more manageable.</p>
<p>Is there a "django-way" of doing it or is custom JavaScript the only option here?</p>
http://stackoverflow.com/questions/1744203/django-admin-onetoone-relation-as-an-inline1Django Admin: OneToOne Relation as an Inline?Jim Robert2009-11-16T19:10:26Z2009-11-16T20:30:09Z
<p>I am putting together the admin for a satchmo application. Satchmo uses OneToOne relations to extend the base <code>Product</code> model, and I'd like to edit it all on one page.</p>
<p>It is possible to have a OneToOne relation as an Inline? If not, what is the best way to add a few fields to a given page of my admin that will eventually be saved into the OneToOne relation?</p>
<p>for example:</p>
<pre><code>class Product(models.Model):
name = models.CharField(max_length=100)
...
class MyProduct(models.Model):
product = models.OneToOne(Product)
...
</code></pre>
<p>I tried this for my admin but it does not work, and seems to expect a Foreign Key:</p>
<pre><code>class ProductInline(admin.StackedInline):
model = Product
fields = ('name',)
class MyProductAdmin(admin.ModelAdmin):
inlines = (AlbumProductInline,)
admin.site.register(MyProduct, MyProductAdmin)
</code></pre>
<p>Which throws this error: <code><class 'satchmo.product.models.Product'> has no ForeignKey to <class 'my_app.models.MyProduct'></code></p>
<p>Is the only way to do this a <a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/#form" rel="nofollow">Custom Form</a>?</p>
<p><strong>edit:</strong> Just tried the following code to add the fields directly... also does not work:</p>
<pre><code>class AlbumAdmin(admin.ModelAdmin):
fields = ('product__name',)
</code></pre>
http://stackoverflow.com/questions/1732746/negative-custom-django-admin-filterspec0Negative custom Django admin FilterSpecT. Stone2009-11-14T00:26:24Z2009-11-16T20:04:43Z
<p>I'm working on a custom Django Admin FilterSpec (covered already on SO <a href="http://stackoverflow.com/questions/991926/custom-filter-in-django-admin">#991926</a>). My FilterSpec is a replacement for the default filter on ForeignKey(User), and basically replaces the list of all users with three only choices, all, mine, and others.</p>
<p>For example, if I applied the custom filterspec to the field <code>created_by</code> it would add an admin filter with All, Created by Me, and Created by Others. Everything works <strong><em>except</em></strong> the negative filter, Created by Others.</p>
<p>I've been attempting to achieve this by appending <code>__not</code> to the query as so:</p>
<pre><code>def choices(self, cl):
yield {
'selected': self.lookup_val == self.user.pk,
'query_string': cl.get_query_string({'%s__not' % self.field.name: self.user.pk}),
'display': capfirst('%s Others' % self.field.verbose_name)
}
</code></pre>
<p>It doesn't seem that Django supports filtering in the negative like this. I've also experimented with having it do a <code>__gte</code> and <code>__lte</code> but the filterspec only uses the first one it finds (gte), dropping the other (lte).</p>
<p>Anybody know how to achieve a negative filter like this through a custom FilterSpec?</p>
http://stackoverflow.com/questions/910169/resize-fields-in-django-admin1Resize fields in Django AdminAndor2009-05-26T11:16:16Z2009-11-16T19:24:46Z
<p>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, also 6 or 8 chars wide, and then the edit box goes up to 15 or 20 chars.</p>
<p>How can I tell the admin how wide a textbox should be, or the heigth of a TextField edit box?</p>
http://stackoverflow.com/questions/1743005/django-ordered-manytomanyfield-in-admin-interface1Django ordered ManyToManyField in admin interfaceLuís Marques2009-11-16T15:45:19Z2009-11-16T17:55:36Z
<p>I have a legacy database with tables for documents and authors. A third table defines an ordered many to many relationship between the documents and authors, using foreign keys to the documents and the authors and an integer to specify the author order for a given document.</p>
<p>Using Django 1.1.1 (or SVN), is there a way to edit the document authors and their order in an admin page?</p>
http://stackoverflow.com/questions/1742372/django-admin-re-authentication2Django Admin - Re-authentication?James B2009-11-16T14:05:05Z2009-11-16T14:40:57Z
<p>I'm in a bit of a dilemma at the moment regarding Django's admin backend. The default authentication system allows already logged-in users that have staff privileges to access the admin site, however it just lets them straight in.</p>
<p>This doesn't feel “right” to me, and I'm wondering if it would be difficult to <em>at least</em> require a re-authentication of that same session in order to get into the backend.</p>
<p>Preferably though, it'd be good if the frontend sessions could be separated from the backend ones (though still using the same user objects), this would allow a clean separation of both parts of the site. Would this perhaps require two separate authentication backends? Would something like this be difficult to achieve?</p>
http://stackoverflow.com/questions/1737017/django-autonow-and-autonowadd0Django auto_now and auto_now_addPaul Tarjan2009-11-15T08:47:56Z2009-11-15T17:19:56Z
<p>For Django 1.1. </p>
<p>I have this in my models.py:</p>
<pre><code>class User(models.Model):
created = models.DateTimeField(auto_now_add=True)
modified = models.DateTimeField(auto_now=True)
</code></pre>
<p>When updating a row I get :</p>
<pre><code>[Sun Nov 15 02:18:12 2009] [error] /home/ptarjan/projects/twitter-meme/django/db/backends/mysql/base.py:84: Warning: Column 'created' cannot be null
[Sun Nov 15 02:18:12 2009] [error] return self.cursor.execute(query, args)
</code></pre>
<p>the relevant part of my db is:</p>
<pre><code> `created` datetime NOT NULL,
`modified` datetime NOT NULL,
</code></pre>
<p>Is this cause for concern?</p>
<p>Side question: in my admin tool, those 2 fields aren't showing up. Is that expected?</p>
http://stackoverflow.com/questions/1712245/django-admin-redirects-not-working0Django Admin redirects not working ...thornomad2009-11-11T00:36:09Z2009-11-14T15:10:17Z
<p>I am using the latest checkout of the django trunk - when I am in the admin on the "change" page for an object/item, there is a nice little link that says "view on site". </p>
<p>The link points to a url such as:</p>
<pre>http://example.com:8888/admin/r/22/15/</pre>
<p>However, when I click on that link (or enter that link into my browser) I get redirected to:</p>
<pre>http://example.com:8888//example.com:8888/video/15</pre>
<p>Which isn't a valid url - but it's really, really close ... the same is happening when I try to <code>get_absolute_url</code> for a comment. I get the short little redirect but it doesn't take me to the right page.</p>
<p>Any ideas why this is happening?</p>
<h3>Additional Info (edit):</h3>
<ul>
<li>have tried with 1.1.1 (same problem)</li>
<li>I have one site listed under <code>sites</code> which is '<a href="http://example.com:8888" rel="nofollow">http://example.com:8888</a>'</li>
</ul>
<p>I thought maybe it had to do with the port number at the end - but what is strange is the my object's <code>get_absolute_url</code> works without a hitch.</p>
<p>I think the problem is coming from <a href="http://code.djangoproject.com/browser/django/trunk/django/contrib/contenttypes/views.py" rel="nofollow"><code>django.contrib.contenttypes.views.shortcut</code></a> which is doing some funny appending business to handle cross-site things ... which I don't quite understand. </p>
<h3>get_absolute_url (for objects)</h3>
<pre><code>@models.permalink
def get_absolute_url(self):
return ('video_detail', [str(self.id)])
</code></pre>
http://stackoverflow.com/questions/1721037/remove-add-another-in-django-admin-screen0Remove "add another" in Django admin screenJack Ha2009-11-12T09:35:36Z2009-11-13T01:20:54Z
<p>Whenever I'm editing object A with a foreign key to object B, a plus option "add another" is available next to the choices of object B. How do I remove that option?</p>
<p>I configured a user without rights to add object B. The plus sign is still available, but when I click on it, it says "Permission denied". It's ugly.</p>
<p>I'm using Django 1.0.2</p>
http://stackoverflow.com/questions/1714995/inline-editing-of-manytomany-relation-in-django0Inline editing of ManyToMany relation in Djangovorpyg2009-11-11T12:49:49Z2009-11-12T17:27:52Z
<p>After working through the Django tutorial I'm now trying to build a very simple invoicing application.</p>
<p>I want to add several Products to an Invoice, and to specify the quantity of each product in the Invoice form in the Django admin. Now I've to create a new Product object if I've got different quantites of the same Product.</p>
<p>Right now my models look like this (Company and Customer models left out):</p>
<pre><code>class Product(models.Model):
description = models.TextField()
quantity = models.IntegerField()
price = models.DecimalField(max_digits=10,decimal_places=2)
tax = models.ForeignKey(Tax)
class Invoice(models.Model):
company = models.ForeignKey(Company)
customer = models.ForeignKey(Customer)
products = models.ManyToManyField(Product)
invoice_no = models.IntegerField()
invoice_date = models.DateField(auto_now=True)
due_date = models.DateField(default=datetime.date.today() + datetime.timedelta(days=14))
</code></pre>
<p>I guess the quantity should be left out of the Product model, but how can I make a field for it in the Invoice model?</p>
http://stackoverflow.com/questions/694477/getting-django-admin-url-for-an-object1Getting Django admin url for an objecthasen j2009-03-29T11:19:22Z2009-11-12T09:28:14Z
<p>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: <code><a href="{{ object|admin_url }}" .... > ... </a></code></p>
<p>Basically I was using the url reverse function with the view name being <code>'django.contrib.admin.views.main.change_stage'</code></p>
<pre><code>reverse( 'django.contrib.admin.views.main.change_stage', args=[app_label, model_name, object_id] )
</code></pre>
<p>to get the url.</p>
<p>As you might have guessed, I'm trying to update to the latest version of Django, and this is one of the obstacles I came across, that method for getting the admin url doesn't work anymore.</p>
<p>How can I do this in django 1.0? (or 1.1 for that matter, as I'm trying to update to the latest version in the svn).</p>
http://stackoverflow.com/questions/1711397/in-django-admin-can-we-have-a-multiple-select-based-on-choices0in django admin, can we have a multiple select based on choicesRasiel2009-11-10T21:37:17Z2009-11-10T22:44:20Z
<p><a href="http://docs.djangoproject.com/en/dev/ref/models/fields/#choices" rel="nofollow">http://docs.djangoproject.com/en/dev/ref/models/fields/#choices</a></p>
<p>i've read through the documentation and this implies using a database table for dynamic data, however it states </p>
<blockquote>
<p>choices is meant for static data that doesn't change much, if ever.</p>
</blockquote>
<p>so what if i want to use choices, but have it select multiple because the data i'm using is quite static, e.g days of the week.</p>
<p>is there anyway to achieve this without a database table?</p>
http://stackoverflow.com/questions/1702836/how-do-i-make-a-django-admin-drop-down-list-have-a-dependency-on-a-search-box0How do I make a Django Admin drop down list have a dependency on a search box?Thierry Lam2009-11-09T18:28:51Z2009-11-09T19:10:23Z
<p>I currently have a workable Django admin on the left mockup below but want it to look and function like the one on the right.</p>
<p><img src="http://i35.tinypic.com/xanhfm.png" alt="alt text"></p>
<p>Basically, I'm creating customized menu list every now and then but I have 1000 menu items to choose from. The pain is manually finding the item I want by scrolling through about 1000 items. I'm thinking of associating a search box next to each drop down menu where I can type the item I want and the drop drop list will automatically show me any matches to my keywords.</p>
<p>Is the above easily done with the current Django Admin or does that involve some more customized code from my part? I could use a horizontal filter but I need that sort order field which is associated with each row.</p>
http://stackoverflow.com/questions/1700202/editing-both-sides-of-m2m-in-admin-page2Editing both sides of M2M in Admin PageDavidM2009-11-09T10:27:46Z2009-11-09T11:19:08Z
<p>Hello all,</p>
<p>First I'll lay out what I'm trying to achieve in case there's a different way to go about it!</p>
<p>I want to be able to edit both sides of an M2M relationship (preferably on the admin page although if needs be it could be on a normal page) using any of the multi select interfaces.</p>
<p>The problem obviously comes with the reverse side, as the main side (where the relationship is defined) works just fine automagically.</p>
<p>I have tried some of the advice here to get an inline to appear and that works but its not a very nice interface.</p>
<p>The advice I got on the django mailing list was to use a custom ModelForm. I've got as far as getting a multiselect box to appear but it doesnt seem to be "connected" to anything as it does not start with anything selected and does not save any changes that are made.</p>
<p>Here's the appropriate snippets of code:</p>
<pre><code>#models.py
class Tag(models.Model):
name = models.CharField(max_length=200)
class Project(models.Model):
name = models.CharField(max_length=200)
description = models.TextField()
tags = models.ManyToManyField(Tag, related_name='projects')
#admin.py
class TagForm(ModelForm):
fields = ('name', 'projects')
projects = ModelMultipleChoiceField(Project.objects.all(), widget=SelectMultiple())
class Meta:
model = Tag
class TagAdmin(admin.ModelAdmin):
fields = ('name', 'projects')
form = TagForm
</code></pre>
<p>Any help would be much appreciated, either getting the code above to work or by providing a better way to do it!</p>
<p>DavidM</p>