Tagged Questions
The templatetags tag has no wiki summary.
4
votes
3answers
3k views
python random.random() causes “'module' object is not callable” when used in custom template tag
If I start python from the command line and type:
import random
print "Random: " + str(random.random())
It prints me a random number (Expected, excellent).
If I include the above-two lines in my ...
3
votes
1answer
164 views
For loop variable used in templatetag?
Trying to solve a problem with templatetags.
I have two templatetags:
@register.inclusion_tag('directory/_alphabet.html')
def alphabet_list(names):
""" Return a list of letters that last names ...
3
votes
1answer
413 views
Passing context between templatetags, django
I am using django to create a web-application.
I have created a template in where I load a templatetag. In this templatetag i load another templatetag. From the template I pass context to the first ...
3
votes
1answer
597 views
Django template get first?
I need to do something like
{{ article.product.images.first.image.url }}
In my template, but there is no "first" (images is a RelatedManager for which I found very little documentation).
Is there ...
3
votes
2answers
1k views
Error importing external library within Django template tag library
So I'm attempting to write a Django reusable app that provides a method for displaying your Twitter feed on your page. I know well that it already exists 20 times. It's an academic exercise. :)
...
2
votes
1answer
156 views
How can I get a Django Template to render itself within a Mako Template?
We made the decision quite awhile ago to use Mako Templates in our Django project. We're also supporting Django Templates, since a lot of reusable apps (obviously) assume that Django Templating is ...
2
votes
3answers
249 views
How to write custom template tags in Django easily?
Writing template tags isn't easy in Django and involves lots of boilerplate code.
What is the least painful way to do it?
Are there any libs for that?
Are there any tricks that doesn't involve ...
2
votes
1answer
478 views
Mako templates using Django template tags
Our Django site is built using Mako templates. We want to use a third party project called django-socialregistration, but its template tags use Django's templates. If we used Django templates we could ...
2
votes
1answer
554 views
Django custom template tag with 'parser.compile_filter(tokens[2])' doesn't work
I tried to implement the solution proposed by T. Stone on my question "how-do-i-pass-a-lot-of-parameters-to-views-in-django" ([link text][1]).
I can't manage to get any result. It's difficult to find ...
2
votes
1answer
172 views
Can I use Django templatetags on Google App Engine?
My Django site has many templatetags directories, can I use Django templatetags on Google App Engine?
2
votes
2answers
353 views
Project name inserted automatically in url when using django template url tag
I am applying the 'url' template tag to all links in my current Django project.
I have my urls named like so...
url(r'^login/$', 'login', name='site_login'),
This allows me to access /login at my ...
2
votes
3answers
307 views
Django templatetag scope forcing me to do extra queries
The problem is that if I call a templatetag into a block
and it fills me a variiable with the usual context[varname]=something,
then if I need that variable into another block, I have to call the
...
2
votes
2answers
514 views
“is_logged_in” templatetag does not render
for some reason, templatetags do not render in templates for django admin.
with this snippet from:
http://docs.djangoproject.com/en/dev/ref/templates/api/?from=olddocs#shortcut-for-simple-tags
{% if ...
1
vote
1answer
53 views
Django unable to find my custom template tags?
I'm creating custom template tags for my django site. I've followed the django documentation for this and have created a templatetags directory in my main application.
/project/apps/core/templatetags
...
1
vote
1answer
119 views
translated enum fields in template tags
I try to show the name of an enum in the template.To be clear,
I have enum like class in model.py
class EmployerWorkerNumberRange():
R_0 = 0
R_1_5 = 1
R_6_15 = 2
UNKNOWN = 3
...
1
vote
1answer
42 views
problem with simple templatetags usage in django
I try to use templatetags in django but I have trouble.
I defined enumhelper.py in the templatetags package.
Then I load it at the top of employer_list.html like
{% extends "base.html" %}
{% load ...
1
vote
1answer
283 views
TinyMCE Custom Tags Rendering
I have add a custom plugin that insert custom tags into my tinyMCE editor of the format:
title
I want the custom tags to be rendered with some styles when viewed in the WYSIWYG view. I have seen one ...
1
vote
1answer
64 views
What are good methods for debugging a silently broken template tag?
I have a template that calls the markdown template tag from the django.contrib.markup library. On my local system it works fine, but on the server, for some reason, the content|markdown call returns ...
1
vote
1answer
157 views
Django, extending admin's templatetags
I want to add an templatetag to the django admin, how can I go around extending the existing tags without needing to fudge in django.contrib.admin.templatetags?
Update:
Using {% load mytemplatetags ...
1
vote
1answer
68 views
Re-usable HTML code / widgets
Sometimes I need to use the same html code in different templates, like:
<div class="mylist"><span>item-1</span><span>item-2</span>...</div>
or more complicated ...
1
vote
1answer
421 views
Django: how to pass form variable to simple tag in template
I am trying to do some custom things in Django comments form. I have simple tag named "get_flatpage_by_id" that returns flatpage model data as array. This is working I expected:
{% get_flatpage_by_id ...
1
vote
1answer
341 views
how can we set safe template tag for admin change_form.html
how can we set safe template tag for admin change_form.html,
I want to display HTML data instead of TextArea Input for admin form,
I've a django field which is excluded in admin form, that field ...
1
vote
1answer
372 views
Import Error when use templatetags in Django
Well, when I'm trying to use 'inclusion' in Django, I met some confused problems that I can't solve it by myself.
There is the structures for my project.
MyProject---
App1---
...
1
vote
1answer
90 views
Check if a template tag is loaded in Django
Is there a way to check if a template tag exists before using the template tag?
In other words, I would like to be able to do something like this:
{% load my_custom_tags %}
...
{% ifloaded ...
1
vote
2answers
185 views
How to get a template tag to auto-check a checkbox in Django
I'm using a ModelForm class to generate a bunch of checkboxes for a ManyToManyField but I've run into one problem: while the default behaviour automatically checks the appropriate boxes (when I'm ...
1
vote
1answer
344 views
Decorators on Django Template Filters?
I have a template filter that performs a very simple task and works well, but I would like to use a decorator on it. Unfortunately the decorator causes a nasty django error that doesn't make any ...
1
vote
3answers
548 views
Django templatetag for rendering a subset of html
I have some html (in this case created via TinyMCE) that I would like to add to a page. However, for security reason, I don't want to just print everything the user has entered.
Does anyone know of a ...
1
vote
2answers
873 views
Django Paginated Comments .. is there any existing solutions?
is there any existing pagination solution for Django contrib.comments?
What I need is just a simple paginated django comments, for the Basic Blog application (from the Django Basic Apps) I used, ...
1
vote
2answers
347 views
In Django, how can I iterate over the result of a custom template tag that requires arguments?
If I have created a template tag:
@register.simple_tag
def last_books(a_cat, cutoff=5):
objects = Books.objects.filter(category=a_cat)
return objects[:cutoff]
How can I do something like ...
0
votes
0answers
52 views
Custom block template tags
I'm stuck at this moment.
I have a custom templatetag:
custom_list = {} #global dict
def somecustom(parser, token):
nodelist = parser.parse(('endsomecustom', ))
tag_name, slug = ...
0
votes
1answer
134 views
Handling request in django inclusion template tag
I am new to Django and am trying to put an upload file form into an inclusion tag. So I can use it in various templates.
I have created the following inclusion tag:
#upload_files.py
...
0
votes
1answer
61 views
Using template tag to open link in new window
I am using the following template tag in the Play framework to create an anchor tag:
#{a @Application.foo( bar )} foobar #{/a}
Does anyone know how this can be modified to open the link in a new ...
0
votes
1answer
123 views
Using inclusion_tag decorater with dynamic template
Here is the standard inclusion tag:
@register.inclusion_tag('results.html')
def show_results(poll):
...
I'd like to know if is it possible to use an inclusion tag, defining dynamically the template ...
0
votes
1answer
43 views
What is the purpose of django tempate tags in the MVC model?
It is my understanding that template tags are a way to organize presentation logic, is this correct?
What I want to do is load/read a bunch of my model objects, but show them in different areas of ...
0
votes
2answers
163 views
How to put JavaScript at the bottom of Django pages when using templatetags?
Yahoo's Best Practices for Speeding Up Your Website states:
Put Scripts at the Bottom
That there are two types of scripts in my Django application:
Scripts included in my base (e.g. inherited) ...
0
votes
2answers
410 views
Django: How to get field value dynamically using custom template tags?
I'm writing a generic template tag that could return a model's field value dynamically based on user inputs in template files. The idea follows which mentioned in the book "Practical Django Project ...
0
votes
3answers
329 views
How do I write a Django template tag for access control?
I'm trying, in vain, to create a simple Django template tag to either show or hide a "delete" link next to a submitted comment on my site.
In a nutshell, I want to pass the comment object to the ...
0
votes
1answer
94 views
Returning an inclusion tag
I am suffering whereever i try to do something in django that is not common(in django, not in python in general)
For example, i don't know how to return an inclusion tag. This. obviously, won't work:
...
0
votes
3answers
90 views
How do I access unrelated models within a Django template?
I want to use an app to create a menu that is easy to edit with the admin interface. Something like this:
class Menu_item
name = models.CharField()
item_url = models.URLField()
My ...
0
votes
4answers
342 views
Can I raise Http404 in a Django template tag?
I have a Django application that provides template tag profile. The tag accepts a username as its argument. How should I treat the situation when there exists no User instance with the given username? ...
0
votes
1answer
186 views
Django Thread-Safety for templatetags
I am coming here, because I have a question about Django and Thread. I read the documentation http://docs.djangoproject.com/en/dev/howto/custom-template-tags/#template-tag-thread-safety and I would ...
0
votes
1answer
744 views
Django - Determine field type of a variable passed to a template tag
I would like to write a Django template tag to which I can pass a variable.
I would like the template tag to behave differently depending on what type of model field the variable was derived from ...
0
votes
1answer
86 views
Load and Reuse Django Template Filters
Is it possible to load a django template tag/filter to use as a function in one of my template tags?
I'm trying to load up some of the django.contrib.humanize filters so I can apply them to the ...
0
votes
1answer
164 views
give an active to class to active link
I am writing a python website built on the back of the django framework, I am looking for a way to highlight the current link the user is on depening on what the URL, I thought doing some thing like ...
0
votes
2answers
178 views
templatetags don't refresh
I have two templatetags in my app which contain forms which show entries in db. When I alter data or add new entry to db, the forms show the old data. While in admin panel everything is correct ...
-1
votes
3answers
163 views
Get full path of text file or any file in c#
Respected Sir,
my Question is that when I am Opening my txt file i.e abc.txt so I want to get full path of only running or opening file in my computer I have done this
Process ...