Tagged Questions
0
votes
1answer
30 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
34 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
20 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
21 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
36 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
22 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
14 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
21 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
20 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
39 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
31 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
42 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
21 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
30 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
34 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
22 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
20 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
41 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
17 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
27 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
32 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
24 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
35 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
29 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 ...
-1
votes
0answers
23 views
Assign navigation items with templatetags in Django 1.5
I'm trying to make a templatetag to create a navigation.
I want to specify navigation items as {% navigation label="Label name" class_name="nav-header" view_name="namespace:view_name", args={key1: ...
0
votes
0answers
30 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
63 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
28 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
...
3
votes
1answer
131 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
vote
2answers
37 views
Remove chars in a string Django python
When I post a value from my page an extra string is create and I would like to remove the 'pattern = "' is there a tag i could use or replace function i can use to remove pattern =" and the ending ". ...
0
votes
1answer
48 views
Passing variable from dropdown in Django to template
I have a small project ongoing in Django (still learning it and Python) and got some question regarding passing a variable in Django.
User entry some data, project processes it and make simple ...
0
votes
1answer
23 views
How to override default django forgot password template?
The password reset templates are stored in:
/usr/local/lib/python2.7/dist-packages/django/contrib/admin/templates/registration
However, I want to override the default templates provided my Django. ...
1
vote
1answer
33 views
django for cycle add variables together
I am facing a problem writing in simple for cycle in template. This is what I am trying to write in pseudo-code.
total = 0;
for each dividend
total += dividend.amount;
echo total;
endfor
But I ...
4
votes
2answers
91 views
Django: How to integrate an app inside another app
i would like to know how can we "call" an application from inside a different application.
Basically, i have, for example :
a Calendar app that does a certain process to render a calendar in html
a ...
0
votes
1answer
28 views
django templates: loop through list of classes/strings
Is there something like:
{% for class in "red", "green", "blue" %}
<div class="{{ class }}"></div>
{% endfor %}
in django templates?
1
vote
1answer
127 views
Django get display name choices
I'm trying to find a solution to my problem.
models.py
class Article(models.Model):
title = models.CharField(max_length=100)
slug = models.SlugField()
description = models.TextField()
...
0
votes
1answer
55 views
django - pass parameter from template to models.py' s function
I' ve a model called mymodel, which has a property getp, but this requires a parameter (request):
class Mymodel(models.Model):
...
def getp(self, request):
return "STH"
. From the ...
1
vote
1answer
28 views
django report from model data - print multiple tables
I'm trying to print out a report in table format; but need to break the table and start a new one when a specific column changes.
Example Data (in a Model)
item1 value group1
item2 value group1
...
0
votes
1answer
23 views
Redirect to a function in Django from template on select tag using Javascript?
I have a select statement like this in Django template:
<select onchange="change_session()" name="select_path" id="select_path">
{% for i in session_info %}
<option ...
0
votes
1answer
26 views
Problems passing a dictionary to a template in Django
Hi I am having trouble with what seems to be a simple problem:
I want to pass a dictionary to a template, and then have the template render that dictionary on the page. However, when I run the page, ...
0
votes
2answers
58 views
django template: access project root path
I would like to access the root path variable in my template, how can I do that?
So far, I have:
{% if user.username == "" and request.path != "/login/" and request.path != "/" %}
<meta ...
0
votes
0answers
26 views
Multiple text boxes for a single model in Django
I have a django application in which I have a model "skills", which is a text field where a user should enter his/her skills, separated by commas. What way can I use to have multiple input boxes in my ...
1
vote
1answer
34 views
Access Model.objects methods from Django templates
Let's say I have a "Person" model.
How can I display the number of persons in my system in a template?
In standard code, I would do: Person.objects.count().
But how to do this in a template?
0
votes
0answers
24 views
Rendering current image from modelform bound to instance
Assume the following Model and ModelForm:
class Car(Model):
photo = ImageField(upload_to='pictures')
CarForm = modelform_factory(Car)
Also, assume a well formed request containing an image, ...
6
votes
2answers
68 views
Delete items from ListView in Django 1.5
I have a ListView and a DeleteView
class MyDeleteView(DeleteView):
success_url = reverse('list')
I want the option to delete the items in the ListView. I know how to do it if I accept the ...
0
votes
1answer
29 views
List like parameter in django template. Is it possible?
Is there any possibility to send a list or a tuple like a parameter to this function:
self.response.out.write(template.render(self.path, sendingList))
i'm new to this and i heard that you can send ...
0
votes
1answer
58 views
Can I find Django CheckboxSelectMultiple checkbox value in template
I've got a Django ModelForm that uses a CheckboxSelectMultiple widget and one of the options is "other". I'd like to check the value of the corresponding checkbox so I can display a text field if it's ...
0
votes
0answers
32 views
Django RequestContext: hide unpopulated fields from URL
I have a searchapp that uses the RequestContext to pass the query parameters ('q', the query string and 'p', the results page number). I am now implementing an 'advanced' version in which the user can ...
0
votes
1answer
31 views
Django wrong precedence of templates?
It took me forever to find out why a template was not getting overridden, only to find that it seems Django simply does not use the correct precedence in overriding the templates.
The templates I'm ...




