0
votes
2answers
33 views

Template Django application extending template django project

I am quite a beginner in django and I need some advices. I am trying as much as possible to create reusable django applications that will be used in several different projects. But I don't know how ...
0
votes
1answer
19 views

Accessing a attribute of another object through a model linked by ManyToMany

Here are my two models class Category(models.Model): name = models.CharField(max_length = 50) description = models.CharField(max_length = 1000) created = ...
0
votes
1answer
26 views

Django Compare variables in template not working

So it may seem as a duplicate but none of the answers solve my issue. So I'm using classed based views. In context I'm sending something as active_country {{active_country}} ...
-2
votes
1answer
20 views

Change first element style in django template loop divided in if else case

I have a loop in my djnago template which is divided in if else case and I need to change the first element style in only *if* case <b><ul> {% for i in prosize %} {% if ...
0
votes
2answers
32 views

Django: Modelform auto-create form in template

I've only been at python for about 2 weeks now and I've run into an issue which I've been trying to figure out for the past 3 days. I've read through the official documentation and pretty much every ...
0
votes
1answer
16 views

django check existence of template context variable

I am writing a django template and I want to differentiate between the existence of a context variable vs it being None, empty etc. I've done my homework and it seems surprisingly hard. Specifically, ...
0
votes
3answers
29 views

Nested loops in template

I have a loop in my Django template which displays the data from database {% for i in prosize %} <li><a class="order" id="{{i.option1}}" ...
0
votes
0answers
23 views

Django + Flot - Send multiple datasets from View to template for multi-line charts

My aim is to plot a multi-line chart using flot in my Django application. With X-axis as time, y-axis as volume and the colored lines to signify different items (Item A, Item B...etc). From all the ...
1
vote
1answer
32 views

I dont see my login.html template

Im a newbie in Django and im using Django-Cms. Im trying to set a login page. I have created this login.html template: {% extends "base.html" %} {% block content %} {% if form.errors %} ...
0
votes
1answer
56 views

Server Error (500) on Django when template debug is set to False?

I am seeing Django 500 Error when I set DEBUG = False in Django. I am using Django 1.5 and Python 2.7. I have also included ALLOWED_HOSTS in my template. Here's my full settings.py: # Django settings ...
2
votes
1answer
47 views

How to get the filename and line number of a Django template error when calling render()?

I'm using the Django template system in a standalone tool (not in a web app), like so: from django import template try: tmpl = loader.get_template(my_template_path) context = ...
1
vote
1answer
57 views

How to add a custom template page to mezzanine?

I've been playing around with mezzanine for a couple days and I've been following this blog, which has been very helpful: http://www.rosslaird.com/blog/customizing-mezzanine/ I'm now at the point ...
0
votes
0answers
21 views

Django template filter: humanize whole block

I'm trying to display a sequence of stories in a Django template. Each story's html is pre-computed and stored in a cache. To display a list of stories, I simply use this story_list.html template ...
1
vote
1answer
27 views

Where to include Underscore templates?

What is the best place in the document to include Underscore Javascript templates? So far I have seen templates being included within <head> or <body> tag. What is more appropriate? Are ...
0
votes
1answer
32 views

Django template multiple url return

I've 2 urls pointing to the same place: url(r'^index/$', 'proj.views.index'), url(r'^index/show_closed/$', 'proj.views.index'), If I use in a template file this: {% url proj.views.index %} it' ...
0
votes
1answer
23 views

Use one template for two similar but different tasks?

I have a template_a.html-- which is included in some open-sourced library and which I expect to get updates in the future. I need a template where only small portions are different from ...
0
votes
1answer
15 views

Get record number of total items in ticket paginator

i have applied paginator on my query objects. when i get records greater then 15, they are skpped to the 2 pages. that words fine for me. but i want to ask what if i want to know my record number in ...
0
votes
1answer
35 views

Passing Python Objects to JavaScript through Django Template Variable

I have been able to pass primitive types such as integers like this, but I would like to pass more complicated objects, such as some the Django models that I have created. What is the correct way of ...
0
votes
0answers
16 views

Regarding HTML Templates: Inheritance vs. Composition [closed]

There have been a few questions asked about composition vs inheritance in general, some of which have very good answers, such as this one. I was wondering what the trade-offs were when talking about ...
0
votes
1answer
27 views

TemplateDoesNotExist at /website/, extended template

Sorry if my question is not well written or anything, this is my first time posting here. So, I'm trying Django and tries to use the generic templates of Django. I create a parent template named ...
0
votes
2answers
41 views

Django forms can't find my template

I'm trying to make use of my first Django form, mostly following this example. Do I need to provide an explicit HTML form myself, or does Django's Form class does this for me? If so, how? Here's my ...
0
votes
1answer
42 views

truncate characters in a HTML element - Django Templates

In my django templates i have a list of objects which is rendered as follows: <li class="keys"> {% for key in job.key_list|slice:":2" %} {% if not forloop.last %} <a ...
1
vote
1answer
64 views

How to pass context variables from multiple view functions to the same template

I have a single template that is serviced by multiple view functions. As an example, read_posts() view returns all posts with a GET, add_post() view adds a new post with a POST. I may have other post ...
0
votes
1answer
45 views

how to encrypt parameters passed in url in django template

I need to encrypt id passed from template to view in django. Actually, user_id have to be encrypted in url so no one can get the id passed in url this code. <tr> {% with ...
1
vote
2answers
22 views

how to affect an dict item to a varibale in django template

i'm trying to affect an item list in template using {% with %}{% endwith %} but still get nothing in my varibale this is the code {% for item in data %} <tr> {% with value = ...
1
vote
2answers
87 views

How to access Django/Mezzanine gallery content in a different page template

Can I access content from Mezzanine page gallery in a template I use for another page? For example I have a gallery page that shows a collection of images I have added in Django Admin to the "Media ...
0
votes
1answer
25 views

how to get argument in dictionary in django template?

i need to pass from view to view using Balise in django template, so i have a dictionary contained my arguments this the code i used in my template {% for item in data % } {% for key, value in ...
1
vote
2answers
26 views

Use Django subdomains to switch out the base template

I would like to add a "dev" subdomain to my Django site for publicly testing experimental layouts. All of these experiments operate on my base.html template. (For example, I might try a new CSS file ...
0
votes
1answer
24 views

django template slice css behaviour

I was working on a small blogging engine for fun which allows for html contents. Also on the home page every blog post is sliced to 500 and displayed. While I was coding this element it struck me ...
0
votes
1answer
31 views

Django Template not being rendered correctly using Class based views

I'm a django newbie and wanted to integrate Singly into the django Polls application. I have used class based views to allow for models from the singly app to be passed along with the Polls models. ...
1
vote
1answer
53 views

django template: custom template tag to display dictionary of dictionary

I want to do this in my template: {% for field in form %} {{ realNameDict.field.name }} {% endfor %} realNameDict is a dictionary. The code above does not work. Why ? EDIT: In python, I think ...
0
votes
2answers
41 views

display foreignkey field in django template

I have models.py like below: class Profile(models.Model): user = models.OneToOneField(User) def __unicode__(self): return "%s" % self.user class Student(models.Model): user = ...
1
vote
2answers
47 views

django template display item value or empty string

My code in template is like this: {% for item in items %} {{ item.somefield }} {% endfor %} I want to display the item value if the item.somefield is not None, or display an empty string. I ...
0
votes
1answer
32 views

django access context in template

My code is like this: I custom my context and want to access my query set in template class GetStudentQueryHandler(ListView): template_name = 'client.html' paginate_by = STUDENT_PER_PAGE ...
0
votes
1answer
36 views

how to serve list of static files in django?

is it possible to serve a list of static files from a given directory in django through templates. Eg. www/example.com/files/path/to/file/ should give a list of all files in the given directory and ...
0
votes
0answers
55 views

django: my jquery just work in the template with sliders

Some of my django proyect templates are: a base.htm <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html> <html lang="es"> <head> <meta charset='utf-8'> <script ...
0
votes
1answer
32 views

django url NoReverseMatch works in 3rd party app but not my project

I am integrating django-zinnia 0.12.3 into my django 1.4 project. I have it installed and working. I want to override its zinnia/base.html template so that all the content appears using my site's ...
-2
votes
1answer
21 views

How add multiples views in the same template? [closed]

I want to make a django application, with a form and a view showing the objects, but in the same template (Just like Twitter). How can i get a form and a view in the same template?
0
votes
2answers
45 views

concise if statements in django templating system

Here is the monster inefficient code: {% for link in header_links %} {% if not link.image %} {% if not link.url %} <li><a href="{{ link|lower }}">{{ link ...
0
votes
1answer
23 views

Django render template from media folder

I'm trying to provide additional level of flexibility for some views, specifically, I want to be able to render a view using a django template from the media location (say referred to by a FileField, ...
1
vote
1answer
31 views

Compare variables in Django Templates

I have two variables in my Django template file like {{orderitem.value.id}} and ` {{ orderitem.order.id }} I need to show some data if they are equal but i don’t know how to compare ...
1
vote
1answer
50 views

[Django][Admin] change_form auto populated fields with javascript

I'm a little lost and don't know how to continue, after a lot of search I think that I'm not doing correctly it. My problem is that I've got a offer class model like this one: class ...
0
votes
1answer
34 views

Display hour with 15 min interval in django template

I need to print dropdown menu with time selection in django template like: 12:00 AM 12:15 AM 12:30 AM (...) All hours should be visible. Is there any simple way to do it in Django template without ...
0
votes
0answers
48 views

Printing objects fields in django template (Not from model)

I want to print the values of the objects in a list I calculate in views.py list = comparation.ClientAssetCompare(request.user) t = get_template('profile/temp.html') c = template.Context({'user' : ...
0
votes
0answers
33 views

Django dynamic template

lets say we have a django model called Test. Test has three fields defined: value: an integer field representing any 5 digit number for instance 00341 begin: a timestamp field represinting a begin ...
0
votes
2answers
28 views

ModelForm confusion

This: class ArticleForm(Form): title = forms.CharField(label="Title", max_length=255,required=True) short = forms.CharField(label="Short ...
0
votes
0answers
34 views

Userena Template Directory

I've gotten userena successfully installed and I've copied the entire userena template directory over to my app (which is not named userena but rather accounts, so the directory the templates are in ...
0
votes
2answers
72 views

Django template extend issue

When I use {% extends %} tag its not pulling through my standard html. Is there something am missing am new to Django template tags. I want to add the Standard,html into my index.html file which also ...
1
vote
2answers
31 views

Refer to a model method within method in Django 1.5

I have a model class ModelName(models.Model): field = models.CharField(max_length=200) def field1(self): return self.field[10:11] def field2(self): return self.field1 ...
4
votes
1answer
173 views

Python/Tornado - compressing static files

For django projects there is an awesome tool called django-compressor. It combines all js or css files under compress template tag into single cached file, like this: {% load compress %} {% compress ...

1 2 3 4 5 18