active questions tagged django-admin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T04:23:25Z http://stackoverflow.com/feeds/tag/django-admin http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1331575/django-admin-error-deleting-user 0 Django admin, error deleting user Asinox 2009-08-25T23:28:02Z 2009-12-06T23:36:05Z <p>I'm trying to delete a user using Django Admin, but I get this error:</p> <pre><code>TypeError: coercing to Unicode: need string or buffer, User found </code></pre> <p>What could cause this error?</p> <p>The complete error:</p> <pre><code>TypeError at /admin/auth/user/ coercing to Unicode: need string or buffer, User found Request Method: POST Request URL: http://www.domain.com/admin/auth/user/ Exception Type: TypeError Exception Value: coercing to Unicode: need string or buffer, User found Exception Location: /home/user/webapps/django/lib/python2.5/django/utils/encoding.py in force_unicode, line 71 </code></pre> http://stackoverflow.com/questions/1385094/django-admin-and-showing-thumbnail-images 0 Django admin and showing thumbnail images Asinox 2009-09-06T07:15:35Z 2009-12-06T23:31:53Z <p>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.</p> <p>Server media URL:</p> <pre><code>from django.conf import settings (r'^public/(?P&lt;path&gt;.*)$', 'django.views.static.serve',{'document_root': settings.MEDIA_ROOT}), </code></pre> <p>Function model:</p> <pre><code>def image_img(self): if self.image: return u'&lt;img src="%s" /&gt;' % self.image.url_125x125 else: return '(Sin imagen)' image_img.short_description = 'Thumb' image_img.allow_tags = True </code></pre> <p>admin.py:</p> <pre><code>class ImagesAdmin(admin.ModelAdmin): list_display= ('image_img','product',) </code></pre> <p>And the result:</p> <pre><code>&lt;img src="http://127.0.0.1:8000/public/product_images/6a00d8341c630a53ef0120a556b3b4970c.125x125.jpg" /&gt; </code></pre> http://stackoverflow.com/questions/398163/ordering-admin-modeladmin-objects-in-django-admin 2 Ordering admin.ModelAdmin objects in Django Admin Rui Ferreira 2008-12-29T17:25:50Z 2009-12-06T23:17:12Z <p>Let's say I have my pizza application with Topping and Pizza classes and they show in Django Admin like this:</p> <pre><code>PizzaApp - Toppings &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Add / Change Pizzas &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Add / Change </code></pre> <p>But I want them like this:</p> <pre><code>PizzaApp - Pizzas &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Add / Change Toppings &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; Add / Change </code></pre> <p>How do I configure that in my admin.py?</p> http://stackoverflow.com/questions/1387561/django-preview-typeerror-str-object-is-not-callable 1 Django preview, TypeError: 'str' object is not callable Asinox 2009-09-07T04:33:04Z 2009-12-06T23:07:56Z <p>I'm trying to make a Preview function. I'm reading this blog, <a href="http://latherrinserepeat.org/2008/7/28/stupid-simple-django-admin-previews/" rel="nofollow">Django Admin Preview</a>, but now I have the following error and I don't know what it means.</p> <pre><code> Traceback (most recent call last): File "/home/user/webapps/django/lib/python2.5/django/core/handlers/base.py", line 92, in get_response response = callback(request, *callback_args, **callback_kwargs) TypeError: 'str' object is not callable </code></pre> <p>I'm lost..</p> <p>Edit:</p> <p>Thanks guys/gals, here is my view.py and url.py:</p> <pre><code> from diligencia.diligencias.views import preview url(r'^admin/diligencias/diligencia/(?P&lt;object_id&gt;\d+)/preview/$','preview'), (r'^admin/(.*)', admin.site.root), from diligencia.diligencias.models import Diligencia @staff_member_required def preview(request, object_id): return object_detail(request, object_id=object_id,queryset=Diligencia.objects.all(), template_object_name = 'diligencia_detail.html', ) </code></pre> http://stackoverflow.com/questions/1839927/registered-models-do-not-show-up-in-admin 0 Registered models do not show up in admin uswaretech 2009-12-03T13:40:31Z 2009-12-06T13:46:55Z <p>I added a model to admin via admin.site.register, and it does not show up in admin. Sice admin is so "It just works", I have no idea of how to debug this. POinters?</p> http://stackoverflow.com/questions/1849250/django-admin-search-functionality 0 Django admin search functionality Zeynel 2009-12-04T19:48:18Z 2009-12-04T19:48:18Z <p>I have a simple database in django with SQLite and now I want to improve it with a better search capability (I will create a new project with new models). I would like to ask about how to plan and go about this project. The existing database has these fields</p> <blockquote> <p>first, initial, last, school, yearGraduated</p> </blockquote> <p>I am using django admin to sort by last name and then filter by year graduated to find lawyers who graduated from same school the same year.</p> <p>It works like this:</p> <blockquote> <p>Enter last name and search.</p> <p>Search results reveal all lawyers who went to same school</p> <p>Sort by last name searched</p> <p>Find year graduated</p> <p>Go to year graduated filter and click on the year graduated to get his classmates.</p> </blockquote> <p>Example:</p> <blockquote> <p>Search for "connelly"</p> <p>Results for 58 names who went to Georgetown University Law Center</p> <p>Sort by last name to see that connelly graduated in 1973</p> <p>Click on 1973 in year graduated filter</p> <p>This pulls 3 more lawyers "eliot", "frederick" and "alan" who graduated from Georgetown in 1973</p> </blockquote> <p>Instead of this I would like to enter "connelly" in the search box and get the names of "eliot", "frederic" and "alan".</p> <p>I am planning to use Postgres with these filds:</p> <blockquote> <p>url (of the bio page of lawyer); firm; firstName; lastName; school; yearGraduated</p> </blockquote> <p>How do I achieve this result? Thanks for your advice and help.</p> http://stackoverflow.com/questions/1269052/inlineformset-with-queryset-of-different-model 0 InlineFormSet with queryset of different model CaptainThrowup 2009-08-12T22:19:30Z 2009-12-03T22:42:49Z <p>What we're trying to do is populate a list of inline forms with initial values using some queryset of a different model. We have products, metrics (some category or type or rating), and a rating, which stores the actual rating and ties metrics to products.</p> <pre><code>class Product(models.Model): name = models.CharField(max_length=100) price = models.IntegerField(max_length=6) class Metric(models.Model): name = models.CharField(max_length=80) description = models.TextField() class Rating(models.Model) rating = models.IntegerField(max_length=3) metric = models.ForeignKey(Metric) product = models.ForeignKey(Product) </code></pre> <p>The end result we're going for is a list of all possible ratings for a Product on the Product admin page. If we have 20 Metrics in our database, when we go to the Product page we want to see 20 forms for Ratings on the page, each one tied to a different Metric. We can't use a queryset based on Ratings to populate the page, because the Rating for a particular Product/Metric combination might not yet exist.</p> <p>We've been looking at all the forms and formset code in Django, and are hoping to come up with a solution as simple as this:</p> <p><a href="http://www.thenestedfloat.com/articles/limiting-inline-admin-objects-in-django" rel="nofollow">http://www.thenestedfloat.com/articles/limiting-inline-admin-objects-in-django</a></p> <p>He just overrides something in BaseInlineFormSet and gives it to the inline. Maybe we can just make something like </p> <pre><code>class RatingInlineFormset(BaseInlineFormset): </code></pre> <p>With some overrides. Any ideas?</p> http://stackoverflow.com/questions/1835689/django-admin-format-fields-in-list-but-keep-sortable 0 Django admin: Format fields in list, but keep sortable? Sam 2009-12-02T20:46:03Z 2009-12-02T20:46:03Z <p>Hi,</p> <p>I keep numeric fields like "size", "width", "height" in my database. Now I would attach units like "KiB" or "pixels" to them when showing them in the change list. This could easily be achieved by adding callables such as "size_formatted" etc to list_display. However, these are no longer sortable.</p> <p>Is there a way around this limitation?</p> http://stackoverflow.com/questions/1821855/differentiating-permissions-in-the-admin-between-editing-and-viewing-a-pop-up 0 Differentiating Permissions in the Admin Between Editing and Viewing a Pop-Up KRH 2009-11-30T19:24:50Z 2009-12-02T19:26:08Z <p>I have a Posting app which has, as an inline, FKs to a Gallery object. The idea being that while making a Posting, a user can click to add a Gallery object to the Posting. For that purpose, I am using a raw_id_field field to pop up the window for Gallery selection.</p> <p>My problem is that I don't want users to have access to modify or add Galleries; just to use the raw_id_field to browse the existing galleries because there will be too many to make a big dropdown menu feasible. Unfortunately, Django uses the permissions for adding and editing an object to determine if a user can see that pop-up even though (as far as I know) that window only allows selecting an existing object.</p> <p>Is there a way to make it so that users can use the raw ID field to pop up to choose Galleries without giving them at least editing priveleges to the Gallery app, and keep the app from appearing in their app list?</p> <p>I know I can define custom permissions in the Meta class of the model, but I'm less sure how to get the admin to observe them (especially without carving it up and making it harder to upgrade Django in the future).</p> http://stackoverflow.com/questions/1830918/how-to-add-django-db-log-models-to-admin-panel 0 How to add django-db-log models to admin panel? enchantner 2009-12-02T05:55:27Z 2009-12-02T16:15:28Z <p>Just installed django-db-log module and trying to make it work properly. 'python manage.py syncdb' command created databases, it seems like logging works, but there is nothing about it in admin panel. As I found in documentation, it should add itself in admin panel without any additional configuration, but then I added 'djangodblog.middleware.DBLogMiddleware' in MIDDLEWARE_CLASSES and 'djangodblog' in INSTALLED_APPS it looks like nothing happens. What I'm doing wrong?</p> http://stackoverflow.com/questions/1833287/change-field-in-django-flatpages-admin 1 Change field in Django Flatpages Admin aptwebapps 2009-12-02T14:37:44Z 2009-12-02T16:15:07Z <p>Using Flatpages with the default admin, I need to change the template field from a text input with to select or radio with predefined choices. It's easy to do this with one of my own apps - just use the choices attribute in the model.</p> <p>I have tried a few things - I will add details about those attempts later if necessary - but does anyone know a nice way to do this?</p> http://stackoverflow.com/questions/1833675/django-admin-has-no-style 0 Django admin has no style sico87 2009-12-02T15:35:59Z 2009-12-02T15:46:25Z <p>Hi there, </p> <p>I have just moved my django site on my staging server, and the admin side of the site has no styling with it, when previously in local development it was fine, I read somewhere that I need to create a symbolic link, I did that by doing this</p> <pre><code>sudo ln -s /var/www/sico/htdocs /usr/lib/python2.5/site-packages/django/contrib/admin/ </code></pre> <p>but that has done nothing is there anything else that I can try?</p> http://stackoverflow.com/questions/1829975/django-manytomany-inline-admin-view-error 0 Django: ManyToMany Inline Admin view error Jasconius 2009-12-02T00:38:58Z 2009-12-02T15:43:13Z <p>Here are the model definitions:</p> <pre><code>class ItemBrand(models.Model): name = models.CharField(max_length = 30, unique = True) def __unicode__(self): return self.name class WantedItem(models.Model): name = models.CharField(max_length = 120) description = models.TextField() created = models.DateTimeField(auto_now = False, auto_now_add = True) expires = models.DateTimeField(auto_now = False, auto_now_add = False) type = models.ForeignKey(ItemType, related_name = "type wanted") GENDER_CHOICES = ( (1, 'Male'), (2, 'Female') ) gender = models.IntegerField(choices = GENDER_CHOICES) brands = models.ManyToManyField(ItemBrand, related_name = "wantedbrands", symmetrical = False) colors = models.ManyToManyField(ItemColor) sizes = models.ManyToManyField(ItemSize) creator = models.ForeignKey(User, related_name = "wishlist creator") def __unicode__(self): return self.name </code></pre> <p>Here is the AdminModel code:</p> <pre><code>class BrandsInline(admin.TabularInline): model = WantedItem.brands.through class WantedItemAdmin(admin.ModelAdmin): list_display = ('name', 'created', 'expires', 'type', 'gender', 'creator') search_fields = ('name', 'description') list_filter = ('created', 'brands',) ordering = ('-created',) inlines = [ BrandsInline, ] exclude = ('brands',) </code></pre> <p>This is pulled basically right from the Django docs, and here's the error I am getting:</p> <p>'ReverseManyRelatedObjectsDescriptor' object has no attribute 'through'</p> <p>I am at a total loss... any ideas? Even if I literally create a linker table and set the "through" attribute in the Model I get the same error.</p> <p>Broken?</p> http://stackoverflow.com/questions/949268/django-accessing-the-model-instance-from-within-modeladmin 0 Django: accessing the model instance from within ModelAdmin? JK Laiho 2009-06-04T08:32:38Z 2009-12-02T02:27:27Z <p>I've got a model for Orders in a webshop application, with an auto-incrementing primary key and a foreign key to itself, since orders can be split into multiple orders, but the relationship to the original order must be maintained.</p> <pre><code>class Order(models.Model): ordernumber = models.AutoField(primary_key=True) parent_order = models.ForeignKey('self', null=True, blank=True, related_name='child_orders') # .. other fields not relevant here </code></pre> <p>I've registered an OrderAdmin class for the admin site. For the detail view, I've included <code>parent_order</code> in the <code>fieldsets</code> attribute. Of course, by default this lists all the orders in a select box, but this is not the desired behaviour. Instead, for orders that don't have a parent order (i.e. have not been split from another order; <code>parent_order</code> is NULL/None), no orders should be displayed. For orders that have been split, this should only display the single parent order.</p> <p>There's a rather new ModelAdmin method available, <code>formfield_for_foreignkey</code>, that seems perfect for this, since the queryset can be filtered inside it. Imagine we're looking at the detail view of order #11234, which has been split from order #11208. The code is below</p> <pre><code>def formfield_for_foreignkey(self, db_field, request, **kwargs): if db_field.name == 'parent_order': # kwargs["queryset"] = Order.objects.filter(child_orders__ordernumber__exact=11234) return db_field.formfield(**kwargs) return super(OrderAdmin, self).formfield_for_foreignkey(db_field, request, **kwargs) </code></pre> <p>The commented row works when run in a Python shell, returning a single-item queryset containing order #11208 for #11234 and all other orders that may have been split from it.</p> <p>Of course, we can't hard-code the order number there. We need a reference to the <code>ordernumber</code> field of the order instance whose detail page we're looking at. Like this:</p> <pre><code>kwargs["queryset"] = Order.objects.filter(child_orders__ordernumber__exact=?????) </code></pre> <p>I've found no working way to replace ????? with a reference to the "current" Order instance, and I've dug pretty deep. <code>self</code> inside <code>formfield_for_foreignkey</code> refers to the ModelAdmin instance, and while that does have a <code>model</code> attribute, it's not the order model instance (it's a ModelBase reference; self.model() returns an instance, but its ordernumber is None). </p> <p>One solution might be to pull the order number from request.path (/admin/orders/order/11234/), but that is really ugly. I really wish there is a better way.</p> http://stackoverflow.com/questions/1828695/using-an-rpc-like-protocol-buffers-as-a-backend-to-django-instead-of-mysql-or-sq 0 Using an RPC like Protocol Buffers as a backend to Django, instead of MySQL or SQLite Off Rhoden 2009-12-01T20:29:22Z 2009-12-01T20:29:22Z <p>The clever folks behind the <a href="http://code.google.com/p/app-engine-patch/" rel="nofollow" title="app-engine-patch">app-engine-patch</a> project have essentially enabled all the fun stuff of Django, including the admin, but without using Django's ORM.</p> <p>From their website:</p> <blockquote> <p>The most important change is that you have to use Google's <em>Model</em> class because the development model is too different from Django (at least with Django's current API).</p> </blockquote> <p>This is essentially what I want to do, but use <a href="http://code.google.com/p/protobuf/" rel="nofollow" title="Protocol Buffers">Google's Protocol buffers</a> as the data transport layer through RPC.</p> <p>Using the Person message in their addressbook.proto example, I essentially want to do this:</p> <pre><code>from django.contrib import admin from myrpc.models import Person class PersonAdmin(admin.ModelAdmin): list_display = ['id', 'name', 'email'] admin.site.register(Person, PersonAdmin) </code></pre> http://stackoverflow.com/questions/1825771/django-admin-permissions-can-edit-user-but-cant-edit-his-permissons-how-to-d 1 django admin permissions - can edit user but can't edit his permissons - how to do it? zalew 2009-12-01T12:06:55Z 2009-12-01T15:53:46Z <p>I gave the editors such permissions:</p> <ul> <li><p>auth | user | can add/change user - ON</p></li> <li><p>auth | permissions | can add/change permissions - OFF</p></li> </ul> <p>Still, when editing, they can change their permissions (and allow themselves actions they shouldn't do). I've found a ticket from 2yrs ago: <a href="http://code.djangoproject.com/ticket/6519" rel="nofollow">http://code.djangoproject.com/ticket/6519</a> and it still works this way.</p> <p>How to allow user edition (email, passwords, etc..) but block permissions change?</p> http://stackoverflow.com/questions/1825478/django-on-webfaction-serving-static-admin-media-files-configuration 0 Django on Webfaction: Serving static admin media files - configuration Hoff 2009-12-01T11:05:16Z 2009-12-01T14:52:50Z <p>hi folks,</p> <p>I having trouble serving Django's static admin files on webfaction.</p> <p>Here's how I'm currently set up:</p> <ul> <li><p>I've created a 'Symbolic link to static-only app', and provided the link to Django admin files in 'extra info': <code>/home/myusername/webapps/mydjangoapp/lib/python2.5/django/contrib/admin/media</code> (cd'ing into that directory works fine)</p></li> <li><p>I've added this app to my django website, and specified <code>/media</code> as the URL path.</p></li> <li><p>In my django settings, <code>ADMIN_MEDIA_PREFIX = '/media/'</code> (my static files are prefixed with /static/, so there's no conflict here)</p> <p>In the source code of an admin page, I can see that admin media is correctly linked, e.g. <code>&lt;link rel="stylesheet" type="text/css" href="/media/css/base.css" /&gt;</code></p></li> </ul> <p>However, following the link I get a 404 page (from nginx).</p> <p>I've played around with this forever now, so any ideas what might be wrong here, or any recommendations on how to troubleshoot this would be really appreciated!</p> <p>Thanks in advance,</p> <p>Martin</p> http://stackoverflow.com/questions/1812806/allow-null-in-foreign-key-to-user-django 0 Allow null in foreign key to user. Django barin 2009-11-28T15:33:26Z 2009-11-30T08:47: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/1816444/adding-custom-js-to-a-django-admin-field 2 Adding custom JS to a django admin field tstenner 2009-11-29T19:07:12Z 2009-11-29T22:24:14Z <p>In a django application I have the following model:</p> <pre><code>class Appointment(models.Model): #some other fields #address fields zipcode=models.CharField(max_length=5) address=models.CharField(max_length=120) latitude=models.FloatField() longitude=models.FloatField() </code></pre> <p>When I'm rendering an Appointment, I'm just putting a marker at the position specified by longitude and latitude with the address as text, however I need the latitude and longitude to do that.</p> <p>Currently, latitude and longitude have to be entered manually in the admin backend, but opening Google Maps/OSM, searching for the address and entering latitude and longitude is work that shouldn't have to be done by hand, so I want to retrieve it through the Google Maps API (keyword Geocoding).</p> <p>Ideally, I want a button "Get coordinates" next to the address, which, when pressed, starts a Geocoding request and fills in latitude and longitude when the address is unambiguous and presents a map with the results and fills in the coordinates when the user clicks on the right marker.</p> <p>I know how to do that, but I'm not sure how I should insert the markup and the code into the admin backend.</p> <p>Some things I already considered but don't want to do as they don't seem natural or seem to be too much work for such a simple task:</p> <ul> <li>putting the code in the address field's description in <code>field_options</code> in a class derived from <code>admin.ModelAdmin</code></li> <li>putting everything address related in a separate model and using a custom <code>form</code> (with a separate template</li> <li>create an address picker widget</li> <li>use GeoDjango</li> </ul> http://stackoverflow.com/questions/1816151/how-to-add-a-custom-view-to-the-django-admin-without-having-a-model-in-the-applic 0 How to add a custom view to the Django admin without having a model in the application Mark 2009-11-29T17:38:04Z 2009-11-29T17:38:04Z <p>I have an application without any models, but with some custom admin actions. Now I want to add a custom admin view to support the custom admin actions. In order to make the use of the application easy I only want to use the actions attribute in the ModelAdmin's that need these actions.</p> <p>The problem is: how do I add a custom view without using a custom AdminSite?</p> <p>At the moment I try to make a AdminModel instance and override the get_urls() method. Then I register the AdminModel using a DummyModel with the managed attribute set to False. Unfortunately this doesn't work completely, because now I get a new section in the admin where I can add DummyModels and I don't want that.</p> <p>Some time ago I saw someone doing this, without getting a section in the admin, so I know it's possible. I can't find back how to do this however.</p> http://stackoverflow.com/questions/1813637/django-how-to-generate-an-admin-panel-without-models 1 Django, how to generate an admin panel without models? thaorius 2009-11-28T20:08:02Z 2009-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-values 0 Django, Cannot assign None, does not allow null values vedran 2009-11-27T21:54:09Z 2009-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-1 0 What to use for tagging in Django 1.1 Clarence 2009-11-27T05:47:30Z 2009-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>[&lt;Tag: []&gt;]</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-searchf 1 Hot to add the ability to search in UserProfile to UserAdmin in Django | search_fields w/ ForeignKey Jannis 2009-11-27T01:40:00Z 2009-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/1804132/django-verbose-name-of-related-model-not-translated 0 Django: Verbose name of related model not translated Sam 2009-11-26T14:52:31Z 2009-11-27T02:45:45Z <p>Hi all,</p> <p>I am using ugettext to translate a Category model's verbose_name. This works fine in admin when adding new objects, however, when using Category as in a one-to-many relationship with Post, the Category's verbose_name is neither translated in the list filter nor the change form of Post. </p> <p>How can I correct this?</p> http://stackoverflow.com/questions/1796776/inline-multiple-one-to-one-fields-in-django-admin 0 Inline multiple one-to-one fields in Django admin Viliam 2009-11-25T13:02:12Z 2009-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-action 0 Django Admin "Edit Selection" Action? magneticMonster 2009-11-25T21:17:15Z 2009-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-django 1 the default "delete selected" admin action in django Hellnar 2009-10-14T11:58:06Z 2009-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-relation 0 Django limit_choices_to at circular relation Sam 2009-11-05T12:21:36Z 2009-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') &amp; 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/1790114/django-altering-model-fields-from-admin-views 0 Django: Altering model fields from admin views Sam 2009-11-24T13:35:08Z 2009-11-24T14:11:29Z <p>Hi all,</p> <p>I would like to know how you can change a model's field's parameters, not during model initialisation, but from a model admin. For instance, I would like to make either field "foo" or "bar" optional, according on a get parameter (wondering about the correct solution for the # PSEUDO CODE bit):</p> <pre><code>def add_view(self, request, form_url='', extra_context=None): if request.GET.get('object_type', 'foo') == 'foo': # PSEUDO CODE: model.fields.foo.blank = False model.fields.bar.blank = True else: # PSEUDO CODE: model.fields.foo.blank = True model.fields.bar.blank = False return super(FileNodeAdmin, self).add_view(request, form_url, extra_context) </code></pre>