django-taggit is a reusable Django application designed to making adding tagging to your project easy and fun.
0
votes
1answer
31 views
Adding multiple tags to model
I have the following model:
class Investor(Profile):
ROLE = (
('AN', 'Angel Investor'),
('VC', 'Venture Capital'),
('SC', 'Seed Capital')
)
role = models.CharField(max_length=2, ...
0
votes
0answers
14 views
Django-Taggit in Edit Form
This is a Model Class
class ModelName(models.Model):
(...)
pasta = TaggableManager(verbose_name=u'Pasta')
and a form template (normal :P )
{{form.as_p}}
I'd like to leave everything very ...
0
votes
1answer
96 views
Using taggit django
I am using the django taggit to add tags to all bids.
My bid model is as follows:
class Bid(models.Model):
tags = TaggableManager()
How can I remove a particular tag from all bids who have ...
0
votes
1answer
44 views
how to change the verbose_name or use original field name in django-taggit tag field
I am using django-taggit for one of my projects and as per the documentation I did the following in the model that i want to use tags / keywords in.
models.py
from taggit.managers import ...
2
votes
1answer
130 views
django-taggit-autocomplete and south
I use django-taggit-autocomplete, but when doing a schememigrating, I got an error
! Cannot freeze field 'main.hotels.tags'
! (this field has class ...
3
votes
1answer
112 views
Deleting the tags that are not used by any other object
I am trying to modify this file https://github.com/alex/django-taggit/blob/master/taggit/models.py so that when a tag is not associated with any other object, it gets deleted.
Here's what I added to ...
0
votes
0answers
38 views
How can i paginate the tag cloud generated taggit-templatetags?
I am using taggit-templatetags (https://github.com/feuervogel/django-taggit-templatetags) to generate the tag cloud but I can't see any option to paginate the tags. I have thousands of tags and it's ...
0
votes
1answer
63 views
How can I have django-taggit tags deleted when there are no more objects attached to them?
I think the title says it. Many tags are created and deleted but they still exist even when no more objects are using them.
Is there a way to make it check upon save and delete unused tags?
1
vote
2answers
105 views
Use django-taggit within south data migration?
I have a model that is using django-taggit. I want to perform a South data migration that adds tags to this model. However, the .tags manager is not available from within a South migration where you ...
0
votes
1answer
146 views
django-tastypie with django-taggit
I am using django-taggit for tagging. I have django-tastypie REST resource for the same object.
While exposing the REST resource, it doesn't fetch the tag field(e.g. equivalent to model.tags.all()). ...
1
vote
1answer
155 views
Django-taggit prefetch_related
I'm building a basic time logging app right now and I have a todo model that uses django-taggit. My Todo model looks like this:
class Todo(models.Model):
project = models.ForeignKey(Project)
...
1
vote
0answers
105 views
django - django-taggit form with django-chosen
I would like to use django-taggit. I use Bootstrap to generate the form.
I use the widget as below for my form fields.
Questions are linked to several items for now, and I would like to link them to ...
1
vote
1answer
201 views
Get all tags from taggit
How to get all the (unique) tags from django-taggit? I would like to display all the tags in a side bar.
Currently I am able to get all the tags for a particular post, but now I need to get all the ...
0
votes
1answer
48 views
Copy tags to copied django object
I'm using django-taggit to tag my to do records.
class Action(models.Model):
name = models.CharField("Action Name", max_length=200)
complete = models.BooleanField(default=False, ...
1
vote
1answer
263 views
Optimize django query to pull foreign key and django-taggit relationship
I have a todo model defined below:
class Action(models.Model):
name = models.CharField("Action Name", max_length=200, unique = True)
complete = models.BooleanField(default=False, ...
0
votes
1answer
133 views
Annotate django-taggit tags attached to specific object
I have an object that is tagged using django-taggit. If I wanted to get a list of all the tags attached to this object, I would follow the documentation like so:
apple = ...
0
votes
1answer
271 views
Django error when visiting site: syntax error (admin.py, line 4)
I am creating a basic blog with only basic python and the taggit module, it resides at http://127.0.0.1:8000/ (have to put random spaces in so i can submit) when i run ./manage.py syncdb it ...
2
votes
1answer
238 views
Why is my django-taggit through model / tastypie query crashing my app?
I am relatively new to Django and have really been struggling with an implementation of a custom django-taggit app through the tastypie REST API. I have researched this and keep running into the same ...
0
votes
1answer
262 views
Django cannot find an app with manage.py syncdb
i am running Mac OS X 10.7 and I succesfully created a project in django by using
django-admin.py startproject MyBlog. In this folder i have manage.py, another folder titled MyBlog and an app ...
1
vote
1answer
390 views
In django-taggit, how to get tags for objects that are associated with a specific user?
I have a series of objects that are associated with specific users, like this:
from django.db import models
from django.contrib.auth.models import User
from taggit.managers import TaggableManager
...
1
vote
4answers
374 views
django-taggit create tagcloud from queryset
I could not find an answer for this.. So here my question. For a new project i'd like to use django-taggit.
Does someone have a suggestion on how to create a tag-cloud based on the current ...
6
votes
1answer
372 views
Using django user authentication & taggit for multiple apps in a single project
Background: I have 5 independent Django projects which I am attempting to combine in to 1 Django project composed of several apps. In other words: projA has appA, projB has appB & projC has appC, ...
0
votes
1answer
137 views
Django Admin modifications for existing extensions (django_taggit)
In a Django project i installed the django_taggit extension. It integrates well with the Django admin interface. I have two problems though:
Problem A: flatchoices
I cannot show a comma-seperated ...
0
votes
0answers
309 views
How can I use a local library repository for django in my hosting?
I am quite new here and I am stuck with a problem.
I would like use django-taggit in my hosting (Dreamhost) across the passenger_wsgi.py.
My problem is that It can't find the library and shows the ...
2
votes
2answers
181 views
Return object tags as a list
Using django-tagging, for an object that has multiple tags assigned to it, how can I return a simple list of tag names?
object.tags() returns an object that is not easily translated to json, and ...
0
votes
1answer
116 views
Django filter to include all tags for which a certain type of item exists
I'm using django-taggit. I am tagging action items and info items. I want to list all tags for which there is an info item. I originally wrote:
...
1
vote
1answer
209 views
Get objects for which a type of foreign key exists
I'm using django-taggit to create an app that stores not only to-do items but also informational items. Both a to-do items and informational items can be tagged.
When I pull a list of tags for to-do ...
0
votes
1answer
128 views
Add count value to set
I'm using django-taggit to tag items in a todo list app.
I'm trying to list each of the tags along with the number of actions associated with each tag so that it may read:
Tag A (1)
Tag B (3)
Tag ...
2
votes
2answers
208 views
most_common with django-taggit
I'm trying to get an ordered list of the most-used tags on my site. The API docs for django taggit reference a most_common() method, but I can't seem to make it work. Docs say:
"Returns a QuerySet of ...
1
vote
1answer
227 views
Django-taggit: how to search for all tags based on another column or foreign key?
The django-taggit example shows how to get all tags for one specific model, and I know there is a way to get all tags in the system, but how do I get all tags based on a foreign-key?
I have tags for ...
0
votes
2answers
223 views
Django taggit doesn't work exclude
I am using Django-taggit and works fine for me but the exclude has a problem.
Keyword is a string like 'key1 key2 key3'. The code is:
keyword = form.cleaned_data['keyword']
qlist = lambda x: ...
4
votes
1answer
450 views
How do I create list and detail views for django-taggit?
I have a fairly simple model that uses Django Taggit for tagging.
Everything works great, but now I'd like to expand some functionality and I'm a little confused.
What I want is two views.
One that ...
1
vote
3answers
329 views
django: django-taggit usage
This is probably a stupid question but I downloaded Django-taggit and the docs mentioned adding a TaggableManagermanager to the each model I want to associate. This is fine, but what about models ...
2
votes
1answer
310 views
Can I get all tags used in django-taggit short of raw sql?
I want to have a user select tags with a radio button widget, not with a char box. So I want to get all candidate tags as in "SELECT slug,name FROM taggit_tag;". Is there a way to do that without ...
0
votes
0answers
86 views
django-taggit tag length increase problem
I use django-taggit in my django app.
Is there a way to increase the tag length limit?
I get errors that I passed my tag length limit.
Thanks, Alex
1
vote
1answer
299 views
Extending TagBase in Django-Taggit
I have created the following TagBase and each category can have subcategory...
Will this work? How can I override its add function in the TaggableManager?
class Category(TagBase):
parent = ...
0
votes
1answer
359 views
django templatetag, get posts related to current post's taggit-tags
I am writing a blog with django, and at the bottom of a blog entry i want to display the 5 latest entries relative to the tags i have attached using django-taggit.
So i figured i needed to pass the ...
0
votes
1answer
170 views
how to show tags related to a particular tag in django taggit ?
I want to show a list of tags that is related to a particular tag(in an optimised way).
I wonder why django-taggit does not provide an inbuilt functionality for this common task.
1
vote
2answers
185 views
How can you limit the maximum number of tags an object can have in django-taggit?
I've been really impressed with the implementation of django-taggit as an application for handling tags within Django. However, I have been unable to find a way to set a maximum number of tags which ...
3
votes
2answers
430 views
django-taggit deep relationship query
I'm using django-taggit and I came upon a problem when trying to filter across relationships.
Having the following models:
class Artist(models.Model):
tags = TaggableManager()
class ...
2
votes
1answer
219 views
django-taggit: Is there a way to produce less db queries?
Say I have a model:
class Entry(models.Model):
...
tags = TaggableManager()
When I iterate over Entry.objects.all() in a template, entry.tags.all produces one more query to the database. Is ...
1
vote
0answers
97 views
Wrong content_type_id when using Inheritance with django-taggit
I defined:
from django.db import models
from taggit.managers import TaggableManager
class Parent(models.Model):
tags = TaggableManager()
class Child (models.Model):
more_stuff = ...
4
votes
1answer
829 views
django-taggit: make the tags not required in the admin
I've started using django-taggit and it seems to fit the bill. But for me there is still an issue with the admin site:
I included the tags attribute in the ModelAdmin like this:
class ...
3
votes
1answer
1k views
django-taggit - how do I display the tags related to each record
I'm using django-taggit on one of my projects and I'm able to save and tie the tags with specific records. Now the question is how do I display the tags related to each record?
For example on my page ...
3
votes
2answers
487 views
How can I limit django-taggit to accept only lowercase words?
I'm using django-taggit. I'd like to have all tags in lowercase, also set a range for tag numbers (say between 1 and 5, just like stackoverflow). Is there any way to do it easily with django-taggit? ...
3
votes
2answers
456 views
Django Taggit - Tag Associations not Saving from Custom Admin Form
Going nuts over here...
From within the shell, I can do:
product.tags.add("a_new_tag")
The tag is added to the db, and the tag association with the product works correctly. (i.e., when I do ...
0
votes
1answer
1k views
django/taggit - unhashable type: 'list'
I'm using django-taggit (see here). This is what I have:
forms.py
from taggit.forms import *
class MyForm(forms.Form):
title = forms.CharField()
my_tags = ...
0
votes
3answers
220 views
django/taggit - error: MyData objects need to have a primary key value before you can access their tags
I'm trying to use django-taggit (see). This is what I have in my code:
models.py
class MyData(models.Model):
title = models.CharField(blank=True, max_length=50)
.....
tags = ...
4
votes
3answers
1k views
django - django-taggit form
I would like to use django-taggit (click here ). The documentation ( click here) talks about using ModelForm to generate the form but I have already my form that I would like to use.
Let's say if I ...
5
votes
2answers
635 views
make case-insensitive tags with django-taggit
I added tags = TaggableManager(blank=True) to my models, but I want my tags to be case-insensitive.
I saw some snippets of work arounds for this and wanted to ask if there is an easy way to do it?
If ...
