Tagged Questions
1
vote
1answer
34 views
Django ListView: Getting Tag Name in Template
This question is a continuation of my previous question that you can find here. I have a ListView that represents a list of items that share a common tag. This is the view:
class TagView(ListView):
...
0
votes
1answer
77 views
Django rss feedparser to render through a inclusion_tag
What I'm trying to do is: Have my inclusion tag using feedparser:
from django.template import Library
import feedparser
@register.inclusion_tag('home/dashboard.html')
def rss_extract(tag):
rss = ...
1
vote
2answers
125 views
Creating Tag Index Django
Im using django-taggit to create a tagging system for a blog. How do you separate and filter objects so that only ones with selected tags are shown? Kind of like how on StackOverflow if you click on ...
0
votes
2answers
152 views
Django Url error: invalid literal for int() with base 10: “python”
I am creating a little Django app with posts and tags. But I have some issues with my urls-models-views. I can't see why in my application i am getting this error invalid literal for int() with base ...
2
votes
1answer
113 views
Disable pagination in django-tables2?
In django-tables2 I have a table which I do not want paginated. I have not specified pagination, as shown in the docs:
table.paginate(page=request.GET.get('page', 1), per_page=25)
The tables still ...
-1
votes
1answer
52 views
How to change Django variables inside templates
I need to change the Django variables from my templates.
for example, I have a variable named {{ fof_list.3.view_count}} and every time I click in an specific button, i need to increase this variable, ...
0
votes
1answer
127 views
Django SyntaxError on url tag in template
I have a Django app that continues to be fussy about the {% url ... %} templating tag. I've fixed this before, but it now it's giving me a SyntaxError on loading the template.
Working backwards
...
2
votes
1answer
399 views
Django Tag model design
I am wondering if the following is the correct way to create tagging system for images and being able to render a tag cloud:
from django.db import models
class Tag(models.Model):
word = ...
1
vote
1answer
182 views
How to use a template filter on a custom template tag?
I have a django problem concerning template tags. I have a template tag named modal_form with 4 arguments. This template tag works perfectly with basic variables like:
{% modal_form "clients" ...
1
vote
1answer
48 views
Django :Suggestion for django model
I am using django models to create my database .
here is my User Class
class User(models.Model):
user_name = models.CharField(max_length=100,null = False)
first_name = ...
1
vote
0answers
70 views
django comments custom tag not working?
I am learning python and django, trying "learning-website-development-with-django", I have done creating projects successfully until comments application. But while adding django's comments ...
2
votes
1answer
166 views
Custom Tags in Django 1.2 with Google App Engine Python 2.7
Creating a custom tag in Google App Engine Python2.5 with Webapp used to be a joyful experience. Here: Django Templates and variable attributes
But now, in Python 2.7 with Webapp2 and Django 1.2, it ...
3
votes
2answers
122 views
Django template: how to show dict whose key has a dot in it? d['key.name']
I have a dictionary like this:
dict_name['keyname.with.manydots']
Problem: I can't do a
{{ dict_name.keyname.with.manydots }}
I know it's not possible to do this with Django's templating.. but ...
1
vote
2answers
73 views
Django how to define common url
I am implementing a directory service and as you know listing URLs appear on a lot of places. I am aware of using the {% url %} tag, it's still not bullet proof for cases like global listing url ...
1
vote
1answer
82 views
Django Inclusion Tag SyntaxError
Trying to follow the Django Inclusion Tag documentation to create a custom template tag, but getting a template syntax error on line 6: def types(Information).
from django import template
register = ...
0
votes
1answer
121 views
Django-tagging 2 tag field in same model
I'm using django-tagging. It works fine when I want 1 tag collection for the model. But now i need to use 2 different collections, somehow like this:
class Compare(models.Model):
title = ...
1
vote
1answer
378 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
1answer
131 views
Django model tags
I am working on a django app and need to add a tags field to one of my models.
In the admin interface i need it to work like the wordpress tagging.. (comma separated entry, auto create new tags and ...
0
votes
1answer
287 views
Django multiple tag field
I'm trying to find a good tutorial for django how to create multiple tags in a model.
For example:
class Tag(models.Model):
name = models.CharField()
class Sample(models.Model):
name = ...
0
votes
1answer
125 views
does django tag '{% url %}' support a context variable for url arguments?
Not sure if I can do the following thing, my url conf likes below:
(r'^web/p/(?P<user_info>\w{1,10})/$','web_user_handler')
My view render a template kind of likes below:
def ...
2
votes
1answer
185 views
'with' tag problems in django
I have a model "Invoice" with a method
def item_objects(self):
return self.invoiceitem_set.filter(kind='item')
I then have a template with that model in its context "invoice"
in that template ...
1
vote
1answer
276 views
Django indirect generic relation
I've been trying to implement a tagging system for my application, where only certain tags are allowed for each content type.
I've tried setting the content type on the Tag model, and using this ...
3
votes
1answer
539 views
How to put an object into template via Jinja2 in Django app using Coffin
I use Coffin to integrate Jinja2 with Django application. I want to use sorl application in my Jinja2 template. So i decided to write my own Extension for tag {% thumbnail %}. I decided to use a great ...
0
votes
1answer
2k views
convert string to html code in django template [duplicate]
Possible Duplicate:
django: rendering a template variable as html
I am developing a django site and I have a string variable which has html tags in it. I need that string to be read as html ...
0
votes
1answer
238 views
Django template render from db and interprets tags
urls.py
url(r'^/mailing/(?P<pk>\d+)/preview/$', PreView.as_view(), name="preview"),
models.py
class Message(models.Model):
# ... other fields ...
body = models.TextField(_("Body"), ...
2
votes
3answers
1k views
unsupported operand type(s) for *: 'NoneType' and 'Decimal'
I have a django app that manages VAT. For instance, it can calculate the VAT for all sales from the European Union.
vat = purchases[0].vat.vat
eu_sales = Sale.objects.filter(country_type='2')
...
0
votes
1answer
150 views
Django template span relationships?
In django, https://docs.djangoproject.com/en/dev/topics/db/queries/#lookups-that-span-relationships, span relationships provide an easy way in django to do a JOIN. Is there a way in the template to ...
0
votes
2answers
59 views
Make filters of an object list
I get from my database a list of objects with attributes. So I want to make dynamics filters on the left depends of my list results.
For example, if i have an advertisement on "Paris" and "New York" ...
-1
votes
2answers
2k views
unsupported operand type(s) for +: 'int' and 'unicode'
I am working with a templatetag to return the variable from a formula I have written. I have been trying to find out why I am getting this traceback. I have tested the formula's in the shell and all ...
0
votes
1answer
88 views
using django template lanuage to realize greater and less
papis
i have a dict here
dict = {1: [1,2,3,4,5,6,7,8,9],
2: [2,4,5,6,7,8,9,0],
3: [5,2,4,6,12,3,7,6]}
i want show it on my page
so i using template as follows:
{%for item in ...
0
votes
1answer
559 views
ImportError when haystack is added to urls?
When I add the following to my site.urls.py file
#haystack search
url(r'^search/', include('haystack.urls')),
I get this error
Caught ImportError while rendering: No module named urls
here
a ...
0
votes
1answer
209 views
Using conditions with django template tags/filters?
If I'm using {% spaceless %}<html></html>{% endspaceless %} in my templates, but I only want the spaceless function on only when I'm not debugging, how can do this? I tried using {% if ...
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 ...
2
votes
4answers
353 views
Django html for, if etc
I'm trying to do a simple for loop on my data in djnago-python.
I want to iterate over a list and check if some element x has a specific field value. If so, i want to show a remove option, and if not ...
2
votes
1answer
463 views
Django: custom template tag errors in for loop
I'm trying to get a custom template tag to work but am having some difficulties when I apply the tag within a for loop with multiple items in the thing being iterated across.
I'd like to have the ...
0
votes
1answer
525 views
django tagging - filter by tag
I'm on a free-time project, and I have this model:
class Post(models.Model):
title = models.CharField(max_length=255)
<..>
tags = TagAutocompleteField()
TagAutocompleteField() is ...
5
votes
1answer
3k views
Django 1.3 passing parameters to filter of class-based generic list view in url.py
Here's my code in url.py:
(r'^tag/(?P<tag>\w+)/$',
ListView.as_view(
model=List,
context_object_name='some_list',
...
3
votes
2answers
480 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? ...
0
votes
1answer
147 views
Django Want to count different item types
Previously I had a client summary list in a table. In one column I had a list of object types and in another, I had the quantity of that object type.
@login_required
def client_summary(request, ...
0
votes
2answers
129 views
Having problems with for loops with Django Tags
I seem to be having a problem with Django using a for loop. For some reason when I display the variable {{count}} in the loop, it does not seem to print out on the webpage. (It works outside the loop ...
0
votes
2answers
1k views
Django custom tag 'takes_context' problem
Hey guys, I`m new with django (came from Grails), especially with all those custom tags that you have to deal with, instead of writting your variables directly inside the templates.
Well, what I need ...
0
votes
1answer
310 views
Loading django custom template tag at onece
I have my custom template tag. How to load it at once, without {% load tag %} in every template-file?
UPD:
As suggested by Yuji:
from django.template.loader import add_to_builtins
...
0
votes
1answer
359 views
Django want to display help_text
Hello I would like to display this help text in my model forms called alternate_id. However I seem to be having trouble with this. It might be what I have written in my response context.
forms.py
...
0
votes
1answer
213 views
Jekyll does not highlight django templates tag
I'm working on jekyll (the static blogging engine) and a stubleupon some problems with the highlight template tag.
It's working for most of the cases but with django templates tag (with {{ or {% ...
3
votes
1answer
2k views
Django simple_tag and setting context variables
Im trying to use a simple_tag and set a context variable. i am using the trunk version of django
from django import template
@register.simple_tag(takes_context=True)
def somefunction(context, obj): ...
0
votes
2answers
1k views
Finding it hard to use a href template tag in Django
I seem to have some difficulty trying to use a href template tag. Here is what I want to do.
I have an edit order form at
(r'^orders/edit/(?P<order_no>\d+)/$', views.edit_order),
I want a ...
0
votes
1answer
456 views
Django custom tag no longer works
I made a custom tag to display a list of categories and its url which worked until I made a category detail view which will only display articles based on the category.
Here is the category view:
...
7
votes
2answers
4k views
Django: Unable to load template tags
I'm using Django 1.2.1 and I'm having problems trying to load my
template tags:
{% load mytags %}
TemplateSyntaxError at /myapp/
'mytags' is not a valid tag library: Template library mytags not
...
2
votes
3answers
546 views
Django template tag to display Django version
What is the simplest way to create a Django template tag which displays the Django version on a template?
I want to put the following in a Django template and have it output the Django version (in ...
0
votes
2answers
107 views
How to pass template variable to tag in Django?
I try to pass a template variable to a tag as parameter, not sure how it works.
For instance
in template html
{{ question.author_id }}
{% monetize_slot question.author_id "questioner" %}
Here I ...