Question

So i want to make simple blog with django and djanggo-taggit.

This is my models.py

from django.db import models
from django.db.models import permalink
from taggit.managers import TaggableManager

class Post(models.Model):
    title = models.CharField(max_length=100, unique=True)
    slug = models.SlugField(max_length=100, unique=True)
    body = models.TextField()
    posted = models.DateField(db_index=True, auto_now_add=True)
    category = models.ForeignKey('Category')
    tag = TaggableManager()

    def __unicode__(self):
        return '%s' % self.title


class Category(models.Model):
    title = models.CharField(max_length=100, db_index=True)
    slug = models.SlugField(max_length=100, db_index=True)

    def __unicode__(self):
        return '%s' % self.title

    class Meta:
        verbose_name_plural = 'categories'

This is my admin.py

from django.contrib import admin
from .models import Post, Category


class PostAdmin(admin.ModelAdmin):
    exclude = ('posted',)
    list_display = ('title', 'category', 'tag', 'posted')
    list_filter = ('posted', 'tag')
    search_fields = ('title', 'body', 'category', 'tag')
    prepopulated_fields = {'slug': ('title',)}


class CategoryAdmin(admin.ModelAdmin):
    prepopulated_fields = {'slug': ('title',)}

admin.site.register(Post, PostAdmin)
admin.site.register(Category, CategoryAdmin)

Right now at http://127.0.0.1:8000/admin/blog/post/ at the tags tab show <taggit.managers._TaggableManager object at 0x01AE4650>. How can I make it show the title of the object ? Thanks in Advance

Was it helpful?

Solution

It says here that you can't use it directly with list display: http://django-taggit.readthedocs.org/en/latest/admin.html

You can get your tags like this:

class PostAdmin(admin.ModelAdmin):    
    list_display=['get_tags']

    def get_tags(self, post):
        tags = []
        for tag in post.tags.all():
            tags.append(str(tag))
        return ', '.join(tags)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top