Tagged Questions

6
votes
3answers
197 views

Basic MVT issue in Django

I have a Django website as follows: site has several views each view has its own template to show its data each template extends a base template base template is the base of the site, has all the …
6
votes
2answers
1k views

Is there a HAML implementation for use with Python and Django

I happened to stumble across HAML, an interesting and beautiful way to mark up contents and write templates for HTML. Since I use Python and Django for my web developing need, I would like to see if …
6
votes
4answers
2k views

Alternate Row Coloring in Django Template with More Than One Set of Rows

Hi, Django templates offer the builtin tag cycle for alternating between several values at different points in a template (or for loop in a template) but this tag does not reset when it is accessed …
6
votes
5answers
2k views

In Django, is it possible to access the current user session from within a custom tag?

I am writing a custom tag in Django that should output a value stored in a user session, but I cannot find a way to access the session object from within a custom tag function. Is there any way to do …
6
votes
2answers
697 views

How do I perform query filtering in django templates

I need to perform a filtered query from within a django template, to get a set of objects equivalent to python code within a view: queryset = Modelclass.objects.filter(somekey=foo) In my template I …
5
votes
1answer
59 views

Can we append to a {% block %} rather than overwrite?

In my core.html I have a block labeled javascript. It would be great if I can append more lines to this block without overwriting everything in it.
4
votes
2answers
102 views

Django - accessing the RequestContext from within a custom filter

I've got a filter currency, which takes a value in USD and converts it to a currency (either USD or GBP). The currency to convert to is stored in the session, but filters don't take RequestContext, so …
4
votes
2answers
163 views

Dynamic templates in Django

I'm about to make a dynamic website in Django so that user can change the template the website is based upon....for new users, they'll have to choose a template they like from a menu, after which this …
4
votes
1answer
272 views

Traversing foreign key related tables in django templates

View categories = Category.objects.all() t = loader.get_template('index.html') v = Context({ 'categories': categories }) return HttpResponse(t.render(v)) Template {% for category in categories %} …
4
votes
2answers
346 views

Django: specifying a base template by directory

I'm working on a Django site that has multiple sections and subsections. I'd like to have several depths of template inheritance: a base template for the whole site, one base template for each section …
4
votes
2answers
569 views

Django Admin Template Overriding: Displaying checkboxselectmultiple widget

Have 2 tables Domain and Group having one to many relationship. These tables have many to many relationship with User table On the User admin interface I am rendering the Group and Domain as …
4
votes
7answers
852 views

How to repeat a “block” in a django template

I want to use the same {% block %} twice in the same django template. I want this block to appear more than once in my base template: # base.html <html> <head> <title>{% …
4
votes
6answers
2k views

Django: how do you serve media / stylesheets and link to them within templates

Variations of this question have been asked, but I'm still unable to get my stylesheets to load correctly when my templates are rendered. I'm attempting to serve static media from the Django process …
4
votes
2answers
842 views

How to access the user profile in a Django template?

I'm storing some additional per-user information using the AUTH_PROFILE_MODULE. We can access the user in a Django template using {{ request.user }} but how do we access fields in the profile since …
4
votes
2answers
531 views

How to disable HTML encoding when using Context in django

In my django application I am using a template to construct email body, one of the parameters is url, note there are two parametes separated by ampersand in the url. t = …

1 2 3 4 5 19 next
15 30 50 per page