Tagged Questions
The django-tagging tag has no wiki summary.
3
votes
1answer
111 views
Django's I18N with third-party apps
I have a Django project which uses django-tagging and is supposed to run in German. So I looked into the sources and found that django-tagging does indeed use gettext_lazy and is thus completely ...
2
votes
1answer
42 views
How to know if a new tag is created in django-tagging?
How can I know if a new tag is created for a model? Looks like the django-tagging API does not provide such method. I'm new to both Django and django-tagging app and would like to hear your advice.
...
2
votes
1answer
153 views
Categories of tags
I'm starting a pro bono project that is the web interface to the world's largest collection of lute music and it's a challenging collection from several points of view. The pieces are largely from ...
2
votes
2answers
159 views
Added tagging to existing model, now how does its admin work?
I wanted to add a StackOverflow-style tag input to a blog model of mine. This is a model that has a lot of data already in it.
class BlogPost(models.Model):
# my blog fields
try:
...
2
votes
5answers
579 views
Django-Tagging - count and ordering top “tags” (Is there a cleaner solution to mine?)
I'm using Django-Tagging, and I don't exactly need a cloud, I just want a limited list of the most popular tags used in my blog entries.
Using the following:
[(tag.name, int(tag.count)) for tag in ...
2
votes
4answers
373 views
What are some useful non-built-in Django tags?
I'm relatively new to Django and I'm trying to build up my toolbox for future projects. In my last project, when a built-in template tag didn't do quite what I needed, I would make a mangled mess of ...
2
votes
1answer
264 views
Retrieving tags for a specific queryset with django-tagging
I'm using django-tagging, and am trying to retrieve a list of tags for a specific queryset. Here's what I've got:
tag = Tag.objects.get(name='tag_name')
queryset = ...
1
vote
1answer
23 views
create custom views for django-tagging
I'm currently working on django tagging.
I want to retrieve all the entries from my given model which are associated with a particular tag.
But i don't want to use the generic views. So how should i ...
1
vote
1answer
91 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 ...
1
vote
1answer
121 views
Unknown specifier in URL when using Django-Tagging
Hi I am getting the following error;
error at /
unknown specifier: ?P[
This is what my URLS file looks like;
urlpatterns = patterns('mainpage.views',
(r'^$', 'index'),
...
1
vote
0answers
47 views
Uninstalling django-dagging-autocomplete
I've used setuptools to install django-tagging-autocpmlete. I then added all necessary settings to the settings file (INSTALLED_APPS, etc) and it worked fine.
When I wanted to remove the app, I took ...
1
vote
1answer
261 views
Django tagging: “already registered” exception
I installed Django tagging. I read the tutorial and disassemble, how it works.
In my models:
import tagging
class TaggingWidget(models.Model):
"""Widget for tagging."""
name = ...
1
vote
1answer
67 views
How make tags with properties in Django?
The django-tagging app provides basic tagging functionality. I need each tag also to have properties (category, description, etc.), basically a related table. What's your recommendation, should I try ...
1
vote
2answers
153 views
Organizing django-tagging tags or assigning properties to tags?
I'd like to categorize my tags. Here's an example of the tags I have now:
css, internet-explorer, firefox, floats
Each of those are separate tags ( 4 in total obviously ). I would like to mark the ...
1
vote
1answer
217 views
Django-tagging: Grabbing objects by specifying multiple tags?
I currently have an entry in urls.py which fetches lone permalinks for my bugs:
from django.conf.urls.defaults import *
from tagging.views import tagged_object_list
from bugs.models import Bug
# ...
1
vote
3answers
429 views
Retrieving untagged objects with django-tagging
What I'm looking for is a QuerySet containing any objects not tagged.
The solution I've come up with so far looks overly complicated to me:
# Get all tags for model
tags = ...
1
vote
1answer
210 views
What to use for tagging in Django 1.1
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.
What are other people ...
1
vote
1answer
233 views
django-tagging loaddata error
I'm trying to do a transition from MySQL to SQLite for a small site. django-tagging is used for one of the models. For the transition I'm using the dumpdata » loaddata method.
The dumpdata ...
1
vote
2answers
891 views
Installation problems with django-tagging
I am having problems using django-tagging. I try to follow the documentation but it fails at the second step
Once you've installed Django Tagging and want to use it in your Django applications, do ...
0
votes
3answers
22 views
Choosing a random item from a tagged library
Gradding a random image causes the title, url (etc) attributes on the tag.rand_img to vanish, meaning I can't display anything more than the object name.
view.py:
def locations_gallery(request):
...
0
votes
1answer
27 views
How to display related tags in django tagging?
i am using django tagging. can anyone give any example as to how can i show the related tags, when the object related to a particular tag is displayed? Something like similar tags in stackoverflow.
...
0
votes
1answer
15 views
django-tagging like app for specific conditions in django
I am making a project where I want to build a user profile. In this user profile, I want to provide the field for employers and skills. Both of these fields have many to many relationship. One user ...
0
votes
1answer
41 views
Sorting django-tagging results
I'm retrieving a set of DIFFERENT (of different class/model) objects with
items = tagging.models.TaggedItem.objects.distinct().filter(tag__name__in=tagslist)
all these objects necessarily have ...
0
votes
0answers
13 views
create custom views for django-tagging
I am using django-tagging to tag my entries. Now I need to display all the entries of a particular tag, however for doing that I do not want to use the genric views because that is not working for me. ...
0
votes
1answer
30 views
Making tags required with django-tagging
I am using django-tagging to manage tags on my entities. How do I ensure that the user has entered at least one tag when filling out a form, other than using javascript validation on the front end?
0
votes
1answer
68 views
Multiple Tag Fields on One Model in Django, or ManyToMany Fields?
I have a Book model that needs two separate Tag fields: genre and tags. I'm considering whether it would be better to write my own Genre and BookTag models for this, and linking it with ...
0
votes
1answer
62 views
Django Tagging - trouble with separated tags
I have got trouble with django tagging - filtering by tags consisting of several words does not work.
models
class MyWidget(models.Model):
"""Widget for tagging. It's damn bugged, so it need try ...
0
votes
1answer
29 views
How do I include strings from a non-tag field as tags using django-tagging?
In Django, using the django-tagging app, I want to make it so that items included in a field that isn't a TagField (e.g., authors, in this example) are added to the list of explicitly provided tags ...
0
votes
1answer
181 views
Django tagging and django admin
How can I add something like a dropdown list or text input with the tags as a search in django admin
0
votes
2answers
121 views
django-tagging only show tags from filtered items
I was wondering how you can filter an object in django-tagging.
For instance if you have written an article and the status is still draft you obviously don't want to show these before the article has ...
0
votes
1answer
119 views
‘Machine tags’ referencing model instances in Django
Example problem
Say, you have models Publication, Photo, Event and Person; they could relate to each other in different ways. Particularly, publications can have 1) some illustrations (related ...
0
votes
1answer
41 views
Django-voting: what is the right way of appending tags
i'm starting with django-tagging and I don't understand why update_tags(object, new_tag) method replaces all existing tags on object by new_tag.
What is the proper way to append a tag to the existing ...
0
votes
2answers
57 views
Is it ok to hardcode dynamic links in a permanent view?
Let's say I wanted to showcase 2-3 clickable buttons on my homepage which will be there permanently. These are links to the css, html, and javascript tag listing pages.
Is it fine to just hardcode ...
0
votes
1answer
596 views
how do I filter tags with django-tagging?
I'm using the django app django-tagging and I'm trying to filter out certain tags for a simple tag search.
the variable 'tag' is text of some tag I am searching for.
'Widget' is the model associated ...
0
votes
1answer
361 views
How to add a user to django-tagging
I'm looking for a way to add "user = models.ForeignKey(User, editable=False)" to django-tagging model with templatetags support but my django knowledge is too low to understand the code of ...
0
votes
4answers
295 views
What is the best UI for selecting tags from a list of existing tags?
I am using django-tagging. My model simply contains a field with a comma separated list of tags. I would like the user to be able to select tags from a list of already existing tags and also allow the ...
-1
votes
1answer
94 views
OperationalError 1054 Unknown column 'tags' using django-tagging
I'm trying to use django-tagging in my django app, but I'm getting an SQL error when inserting the field
my model has tags = TagField()
>>> from cms.models import Articles
>>> ...
-4
votes
1answer
46 views
Is Django-Tagging still maintained? [closed]
Last contribution to github has been on 2010_01_22, which is more than 2 years now. Tagging still works, but will it continue to? Is it just so well written it doesn't need maintaining for such a long ...