Tagged Questions
1
vote
2answers
39 views
How to render lists of column values into a table using a template (such as Jinja2)
I am trying to do the following (doesn't work, just shown to convey the intended behavior):
<table>
<tr>
<th>Column 1</th>
<th>Column 2</th>
...
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 ...
2
votes
2answers
43 views
Python Safe string templates for nested dict object
I have a complex nested dict object, e.g:
value = {
'a': '100',
bits: {
1: 'alpha',
2: 'beta',
3: ['31', '32', 901]
}
}
I need to 'safely' format it using a ...
0
votes
1answer
29 views
Change string format delimeters in python
I'd like to template out some config files, but they are not compatible with python's
"this is a {template}".format(template='string') formatting
eg. curly braces are part of the config (nginx ...
-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
1answer
29 views
Python lambdas in Jinja2
I use Jinja2 as a website template engine, and all helper functions used in templates I've implemented as macros, but for one. This is it's Python code:
def arrow_class_from_deg(angle):
if angle ...
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' : ...
-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
18 views
Tornado app file organization
Whats the best practice for complex template structure in a tornado app? We will have about 100 FAQ's that will each be on their own page.. Is there a better way than having 100 static html files (in ...
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
134 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 ...
0
votes
0answers
16 views
Context inheritance with Jinja2 templates
I am having troubles to inherit context in Jinja2.
I have server code -wsgi app:
class MyApp(object):
def __init__(self, config):
template_path = os.path.join(os.path.dirname(__file__), ...
0
votes
1answer
26 views
python : template var without space
in python, I try use templates
from string import Template
s = Template("hello $world")
print s.substitute(world="Stackoverflow")
ok, but, In the template I need concatenate a string without ...
1
vote
1answer
130 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
56 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
146 views
Python - format datetime with unicode string in Jinja2
Here is the code I'm using to format a datetime in Jinja2
# -*- encoding=utf-8
import jinja2
import datetime
now = datetime.datetime.utcnow()
print jinja2.Template(u'''Hello {{ date.strftime('%Y 年 ...
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
...
1
vote
1answer
34 views
Catch url with catch all re not rendering css
I'm building an app on the webapp2 framework in Google App Engine in Python. I've been using Jinja2 as my template engine and Twitter Bootstrap for styling purposes. After building a nice ...
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
35 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?
4
votes
3answers
188 views
How can I send variables to Jinja template from a Flask decorator?
Many routes around my blueprinted flask app will need to send 'sidebar data' to jinja.
I'm looking for the most efficient way to do this. Their has to be something better than importing my ...
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 ...
-1
votes
1answer
37 views
A script to make a script to write multiple similar files [closed]
I am trying to write a script A that will take a VHDL file X as input and create a script B to generate several files similar to X but with small differences (eg the initial value of a signal ...
0
votes
1answer
59 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
52 views
Python web.py hasattr not defined[solved]
If my explanation is lacking, please look here as well: https://github.com/webpy/webpy/issues/199
In this instance, I am trying to hide/show certain elements in the layout based on certain variables.
...
1
vote
1answer
68 views
Flask per-application template folder
I implementing simple site with couple of applications (like blog, code, account, etc). I decided to split one python file to apps due to large size. I do not using blueprints or something else except ...
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 ...
1
vote
1answer
34 views
Jinja2: saying 'Render this macro inside another macro or template'
I have a number of macros I'd like to render within a common container macro or template. With pseudo-code:
Macro1
Macro2
Macro3
Container
In a template:
"render macro1 inside of Container" e.g. ...
1
vote
2answers
73 views
Django template format string
i have a form that has some field:
class ProfileEditForm(forms.Form):
nickname = forms.CharField(max_length=30, label=_('Your nickname'), required=False)
then in template i want to put users ...
0
votes
0answers
53 views
How do I import mixins using `pyjade` efficiently?
Referring to https://github.com/SyrusAkbary/pyjade/issues/27, it seems the jinja2 does not allow importing mixins from external files.
However, I got a helper.jade which has loads of mixins. If I ...
2
votes
1answer
38 views
Template to forms
I'd like to do somehow the contrary to what a template is used for: I want to write templates and programmatically derive a representation of the different tags and placeholders present in the ...
0
votes
1answer
67 views
django-notification changing default template
I'm attempting use django-notification to send an email to the admin every time a user modifies, creates or deletes a database entry. The issue is, while I have created the notice types and confirm ...
3
votes
1answer
45 views
How do I test Pyramid Chameleon Templates?
I know how to unit test my views using something like this:
class ViewsTests(unittest.TestCase):
def setUp(self):
request = DummyRequest()
self.config = setUp(request=request)
...
0
votes
2answers
178 views
Remove time in date time function?
I have a variable {{value.time}} in this value executes
March 22, 2013, 2:30 a.m
But I want to remove the 2:30 a.m (time) for this value in my templates file. How could I do this?
-4
votes
3answers
117 views
Remove the decimal part of a floating-point number in django? [closed]
I have a variable {{value.item_total }} in this value executes 499.00... But I want to remove the for this value in my templates file.. how could i do this.. anyone suggest me please..
1
vote
1answer
61 views
Django views default values to templates
Is there any way to pass a variable to all templates? For example I have a view which contains
render_to_response('page.html', dictionary, \
context_instance = RequestContext(request))
and I would ...
0
votes
0answers
35 views
Customize ImageField display on a django form [closed]
I am actually working on a django website.
I have a modelform that contains an ImageField. The upload works fine on the website, but I would like to customize my ImageField. Is it possible to replace ...
0
votes
2answers
67 views
For a checkbox with multiple values in my html template how to access it through python code?
I'm a python and django newbie.
This is in my html template
<input type ="checkbox" value={{ item.id }} name="ck1[]">
In views.py when i do a checked = request.POST.get(['ck1']) i get ...
0
votes
2answers
52 views
How to customize Page not found (404) in django?
How I customize the error page in Django and where do I put my html for this page.
1
vote
4answers
71 views
How do I return the key of an appengine datastore object from the template in index.html?
I want my users to be able to modify the attributes of displayed datastore objects by clicking buttons next to each object.
In order to do this, I believe I need to get the id of the datastore object ...
0
votes
2answers
85 views
.css won't affect my template in django
I am currently writing my first django-app and are encountering a few problems, as expected.
The problem I am struggeling with at this moment is linking css to my template files. I've been searching ...
1
vote
2answers
102 views
show images in Django templates
Hi,
can someone help me with this issue: I have a Django porject,
in settings.py
MEDIA_ROOT = 'C:/Users/hl/workspace/beer/media'
MEDIA_URL = '/media/'
STATICFILES_DIRS = (
...
4
votes
2answers
124 views
avoiding csrf error in django 1.4.3
I am using django to design a basic login and logout page. so below are my code
settings.py
TEMPLATE_CONTEXT_PROCESSORS = (
...........
...........
...
0
votes
1answer
66 views
How can I preserve line breaks in a string when using web.py to generate HTML from a template?
I'm using web.py to generate HTML pages using templates.
The HTML template is like this:
$def with (scene)
...
<p id="descriptions">
$scene.descriptions[scene.status]
</p>
Some ...
1
vote
3answers
61 views
Insert calcuated results into LaTeX document
For my lab experiments, I write programs that do calculations with my measurements. Currently, those programs print out a plain summary of all the data in the terminal, like so:
U = 2.0 ± 0.1 V
I = ...
0
votes
1answer
93 views
How to use inheritance with mako using non-file based templates?
Most of the examples and tutorials for mako suggest you use files for templates.
How can I use inheritance, if the templates are stored in strings or in a database?
As a starting point I am trying ...
0
votes
1answer
45 views
generating httptemplate (html) using python code
I have used python so far only for simple applications. I want to create a html file using python code which I can use on web server. How can I create this template using Django?
1
vote
3answers
264 views
Django HTTP 500 Error
I am creating a custom HTTP 500 error template. Why is it Django shows it when i raise an exception and not when I return HttpResponseServerError (I just get the default browser 500 error)? I find ...



