active questions tagged django+django-templates - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T15:19:32Z http://stackoverflow.com/feeds/tag/django+django-templates http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1387561/django-preview-typeerror-str-object-is-not-callable 1 Django preview, TypeError: 'str' object is not callable Asinox 2009-09-07T04:33:04Z 2009-12-06T23:07:56Z <p>I'm trying to make a Preview function. I'm reading this blog, <a href="http://latherrinserepeat.org/2008/7/28/stupid-simple-django-admin-previews/" rel="nofollow">Django Admin Preview</a>, but now I have the following error and I don't know what it means.</p> <pre><code> Traceback (most recent call last): File "/home/user/webapps/django/lib/python2.5/django/core/handlers/base.py", line 92, in get_response response = callback(request, *callback_args, **callback_kwargs) TypeError: 'str' object is not callable </code></pre> <p>I'm lost..</p> <p>Edit:</p> <p>Thanks guys/gals, here is my view.py and url.py:</p> <pre><code> from diligencia.diligencias.views import preview url(r'^admin/diligencias/diligencia/(?P&lt;object_id&gt;\d+)/preview/$','preview'), (r'^admin/(.*)', admin.site.root), from diligencia.diligencias.models import Diligencia @staff_member_required def preview(request, object_id): return object_detail(request, object_id=object_id,queryset=Diligencia.objects.all(), template_object_name = 'diligencia_detail.html', ) </code></pre> http://stackoverflow.com/questions/276345/syntax-error-whenever-i-put-python-code-inside-a-django-template 1 Syntax error whenever I put Python code inside a Django template rksprst 2008-11-09T19:24:41Z 2009-12-06T23:02:57Z <p>I'm trying to do the following in my Django template:</p> <pre><code> {% for embed in embeds %} {% embed2 = embed.replace("&amp;lt;", "&lt;") %} {{embed2}}&lt;br /&gt; {% endfor %} </code></pre> <p>However, I always get an invalid block or some syntax error when I do anything like that (by that I mean {% %} code inside a loop). Python doesn't have {} to signify "scope" so I think this might be my problem? Am I formatting my code wrong?</p> <p>Edit: the exact error is: <code>Invalid block tag: 'embed2'</code></p> <p>Edit2: Since someone said what I'm doing is not supported by Django templates, I rewrote the code, putting the logic in the view. I now have:</p> <pre><code>embed_list = [] for embed in embeds: embed_list[len(embed_list):] = [embed.replace("&amp;lt;", "&lt;")] #this is line 35 return render_to_response("scanvideos.html", { "embed_list" :embed_list }) </code></pre> <p>However, I now get an error: <code>'NoneType' object is not callable" on line 35</code>.</p> http://stackoverflow.com/questions/1849243/decorators-on-django-template-filters 0 Decorators on Django Template Filters? Jim Robert 2009-12-04T19:47:01Z 2009-12-06T17:35:34Z <p>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 sense...</p> <p>Code that works:</p> <pre><code>@register.filter(name="has_network") def has_network(profile, network): hasnetworkfunc = getattr(profile, "has_%s" % network) return hasnetworkfunc() </code></pre> <p>With Decorator (doesn't work):</p> <pre><code>@register.filter(name="has_network") @cache_function(30) def has_network(profile, network): hasnetworkfunc = getattr(profile, "has_%s" % network) return hasnetworkfunc() </code></pre> <p>Here is the error:</p> <blockquote> <p>TemplateSyntaxError at /</p> <p>Caught an exception while rendering: pop from empty list</p> </blockquote> <p>I have tried setting break points inside the decorator and I am reasonably confident that it is not even being called...</p> <p><del>But just in case here is the decorator (I know someone will ask for it)</del></p> <p>I replaced the decorator (temporarily) with a mock decorator that does nothing, but I still get the same error</p> <pre><code>def cache_function(cache_timeout): def wrapper(fn): def decorator(*args, **kwargs): return fn(*args, **kwargs) return decorator return wrapper </code></pre> <p><strong>edit <em>CONFIRMED</em></strong>: It is caused because the decorator takes <code>*args</code> and <code>**kwargs</code>? I assume <code>pop()</code> is being called to ensure filters all take at least one arg?</p> <p>changing the decorator to this fixes the problem:</p> <pre><code>def cache_function(cache_timeout): def wrapper(fn): def decorator(arg1, arg2): return fn(arg1, arg2) return decorator return wrapper </code></pre> <p>Unfortunately that ruins the generic nature of the decorator :/ what to do now?</p> http://stackoverflow.com/questions/1854672/error-when-using-tag-cloug-in-django 0 Error when using Tag Cloug in Django Tran Tuan Anh 2009-12-06T07:42:24Z 2009-12-06T16:51:22Z <p>There are my code:</p> <pre><code>{% load tag_cloud %} {% tag_cloud_for_model blog.Entry as tags with steps=6 min_count=1 distribution=log %} {% for tag in tags %} &lt;span class="tag-{{tag.font_size|add:"1"}}"&gt;&lt;a href="/blog/tag/{{tag.name|slugify}}/"&gt;{{tag.name}}&lt;/a&gt;&lt;/span&gt; {% endfor %} </code></pre> <p>Everything looks normal until I have 6 tag "django" in 6 different entries. The error is raised as follows:</p> <pre><code>TemplateSyntaxError at /blog/tags/ ... Caught an exception while rendering: invalid literal for int(): ... ValueError: invalid literal for int(): </code></pre> <p>Please help me solve this problem. Thanks !</p> http://stackoverflow.com/questions/1269686/how-do-you-mark-strings-as-safe-in-a-view-ot-the-template-in-jinja2 0 How do you mark strings as "Safe" in a view (ot the template) in Jinja2? sotangochips 2009-08-13T02:10:25Z 2009-12-06T10:30:11Z <p>Typically when you want to mark string output as safe in Jinja2 you do something like this:</p> <pre><code>{{ output_string|safe() }} </code></pre> <p>However, what if output_string is <em>always</em> safe? I don't want to repeat myself every time by using the safe filter.</p> <p>I have a custom filter called "emailize" that preps urls for output in an email. The ampersands always seem to become escaped. Is there a way in my custom filter to mark the output as safe?</p> http://stackoverflow.com/questions/1843324/query-a-template-for-the-variables-it-needs 1 Query a template for the variables it needs? Vicki Laidler 2009-12-03T22:11:33Z 2009-12-04T20:14:58Z <p>I'd like to be able to instantiate a template from a file (presumably using the django.template.loader.get_template(filename) ), and then determine the set of variables that should be defined in whatever context it is passed.</p> <p>I thought there would be a method on the Template object, but there doesn't seem to be. </p> <p>I read the docs, and the closest I found was this:</p> <p><a href="http://docs.djangoproject.com/en/1.0/topics/templates/#using-the-built-in-reference" rel="nofollow">http://docs.djangoproject.com/en/1.0/topics/templates/#using-the-built-in-reference</a></p> <p>which suggests going to the admin interface to see all the variables associated with a given view.</p> <p>I don't want to go through the admin interface because I want to do this programmatically -- I'm trying to write tests.</p> <p>I'm using Django version (1, 0, 2, 'final', 0)</p> <p>Updated:</p> <p>I tried synack's answer and found that (with the replacement of filter_expression.token by filter_expression.var, to get the actual name of the variable without tags and so on) it returned the variables that are defined locally in the template, but did not work for variables that are defined in the parent that it extends. </p> <p>So for example, suppose I have templates in two files:</p> <p>toyparent.html:</p> <pre><code>{%block base_results%} Django is {{adjective}} {%endblock base_results%} </code></pre> <p>toychild.html:</p> <pre><code>{% extends "toyparent.html" %} {%block base_results%} {{block.super}} I {{verb}} it. {%endblock base_results %} </code></pre> <p>And I load the child template:</p> <pre><code>&gt;&gt;&gt; toy=django.template.loader.get_template('toychild.html') </code></pre> <p>This renders properly:</p> <pre><code>&gt;&gt;&gt; toy.render(django.template.Context(dict(adjective='cool',verb='heart'))) u'\n \nDjango is cool\n\n I heart it.\n\n' </code></pre> <p>But I can't get the two variables from it:</p> <pre><code>&gt;&gt;&gt; v=toy.nodelist.get_nodes_by_type(VariableNode) &gt;&gt;&gt; for k in v: print k.filter_expression.var ... block.super verb </code></pre> http://stackoverflow.com/questions/1541757/present-data-from-python-dictionary-to-django-template 1 Present data from python dictionary to django template.? python 2009-10-09T04:13:47Z 2009-12-04T18:39:13Z <p>I have a dictionary </p> <pre><code>data = {'sok': [ [1, 10] ], 'sao': [ [1, 10] ],'sok&amp;sao':[ [2,20]] } </code></pre> <p>How Can I (Loop trough Dictionary ) present My data as (HTML) table to Django template.?? This format that as table</p> <pre><code> author qty Amount sok 1 10 sao 1 10 sok&amp;sao 2 20 total </code></pre> http://stackoverflow.com/questions/1843535/user-authentication-in-django -1 User authentication in Django cornjuliox 2009-12-03T22:42:30Z 2009-12-04T01:50:56Z <p>I learned how to authenticate users in Django months ago, but I've since upgraded and am having some problems so it occurred to me this morning that I may not have been doing it correctly from the start so I decided to ask.</p> <p>In my project's urls.py file I've got ^accounts/login/$ and ^accounts/logout/$ both wired up to the built-in login() and logout() views (at django.contrib.auth.views) and ^accounts/profile/$ is connected to a view I've written, called "start_here" whose contents are basically this:</p> <pre><code>def start_here(request): if request.user: user_obj = request.user else: user_obj = None is_auth = False if request.user.is_authenticated(): is_auth = True return render_to_response("profile.html", {'auth': is_auth,'user': user_obj,}) </code></pre> <p>Now, "profile.html" extends a master template, called master.html, inside which is a "navbar" block whose contents are supposed to change if 'auth' == True (snippet below)</p> <pre><code>{% block navbar %} {% if auth %} &lt;a href=""&gt;Link A&lt;/a&gt; &lt;a href=""&gt;Link B&lt;/a&gt; &lt;a href=""&gt;Link C&lt;/a&gt; &lt;a href=""&gt;Link D&lt;/a&gt; &lt;a href=""&gt;Link E&lt;/a&gt; &lt;a href=""&gt;Link F&lt;/a&gt; &lt;a href="/accounts/logout/"&gt;Logout&lt;/a&gt; {% else %} &lt;a href="/accounts/login/"&gt;Login&lt;/a&gt; {% endif %} {% endblock %} </code></pre> <p>My problem is that when I log in, and it redirects to /accounts/profile, the navbar doesn't display Links A-F + Logout, it displays only "login". It doesn't work the way I expect it to unless I manually copy-paste the above block into profile.html. When calling render_to_response(), does the context I provide get passed to the parent template as well as the child? </p> <p>Full source to master and profile.html: <a href="http://dpaste.com/hold/128784/" rel="nofollow">http://dpaste.com/hold/128784/</a> I don't see anything suspect in the code.</p> http://stackoverflow.com/questions/1842389/reverse-for-with-arguments-and-keyword-arguments-not-found 0 Reverse for '*' with arguments '()' and keyword arguments '{}' not found. BryanWheelock 2009-12-03T19:42:13Z 2009-12-03T23:19:35Z <p>Caught an exception while rendering:<br> <code>Reverse for 'products.views.'filter_by_led' with arguments '()' and keyword arguments '{}' not found.</code></p> <p>I was able to successfully import <code>products.views.filter_by_led</code> from the shell and it worked so the path should be correct.</p> <p>Here is the urls.py:<br> <code>(r'^led-tv/$', filter_by_led ),</code></p> <p>This is where the error is being generated:<br> <code>href="{% url products.views.filter_by_led %}"&gt;</code></p> <p>Which I can't understand because this works fine from the same file:<br> <code>{% url products.views.lcd_screen_size screen_size=50 %}</code></p> <p>Here is the function definition:<br> <code>def filter_by_led(request):</code></p> <p>I don't understand why Django would think that the function would not be able to find the Reverse for that function.</p> <p>I deleted all the *.pyc files and restarted Apache.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1841826/can-you-check-the-internet-protocol-from-djangos-template 1 Can you check the internet protocol from Django's template? Thierry Lam 2009-12-03T18:17:49Z 2009-12-03T19:14:16Z <p>Right now, if I want to check whether the current page is accessed through <code>http://</code> or <code>https://</code>, I will use the following Javascript in my templates and write html from <code>document.write</code>:</p> <pre><code>&lt;script type="text/javascript"&gt; var protocol = document.location.protocol; if (protocol == "http:") document.write("regular"); else document.write("secured"); &lt;/script&gt; </code></pre> <p>Is there another way to achieve the above in Django's template without using Javascript?</p> http://stackoverflow.com/questions/1836416/using-breadcrumbs-with-django-filter-querydict-trouble 0 Using breadcrumbs with django-filter, QueryDict trouble John Debs 2009-12-02T22:46:33Z 2009-12-03T07:22:08Z <p>I'm using django-filter to drill down and would like to create breadcrumbs for each item that was filtered. For example:</p> <pre><code>Price ranges: 10,000+ 5,000-9,999 1,000-4,999 0-999 Bedrooms: 4 3 2 1 </code></pre> <p>Each of the items under Price ranges and Bedrooms would be a link to drill down in a queryset.</p> <p>I'd like to create a breadcrumb such as <code>Price range 0-999</code> or <code>Bedrooms 3</code> if the user were to click those links, and then show <code>Price range 0-999 &gt; Bedrooms 3</code> or <code>Bedrooms 3 &gt; Price range 0-999</code> when they click a second link.</p> <p>The breadcrumbs should maintain order (the part I'm having trouble with) and work for any number of attributes. Clicking a link in the breadcrumb trail should apply the filter clicked on and all filters before it in the trail.</p> <p>I'd like to create an empty <code>QueryDict</code> and then iterate through request.GET to build the <code>QueryDict</code> up as I output the breadcrumbs, but for some reason <code>QueryDict</code> iterates through its elements backwards (see the documentation).</p> <p>What's the cleanest way to accomplish this? Does anyone know why <code>QueryDict</code> works this way? (I imagine there's a use-case I'm missing.) Any advice is appreciated.</p> http://stackoverflow.com/questions/1827976/how-to-write-better-template-tags-in-django 0 How to write better template tags in django... bowdengm 2009-12-01T18:28:26Z 2009-12-01T23:25:55Z <p>I've seen how I can write template tags that set a context variable based on a template like this</p> <pre><code>{% my_template_tag 'blah' as my_context_variable %} </code></pre> <p>But I'd like to be able to do this:</p> <p>given that both <code>group</code> and <code>user</code> are set in the context in the view </p> <pre><code>{% is_in_group group user as is_member %} {% if is_member %} #.... do stuff .... {% endif %} </code></pre> <p>or ideally something like this:</p> <pre><code>{% if is_in_group group user %} # .... {% end if %} </code></pre> <p>Obviously the other way round is to just set <code>is_member</code> in the view - but this is just an example and would be good to know how to do something like this anyway!</p> http://stackoverflow.com/questions/1200548/writing-a-template-tag-in-django 0 Writing a Template Tag in Django Oli 2009-07-29T14:12:16Z 2009-12-01T20:08:33Z <p>I'm trying to customise a CMS written in Django. The content editors aren't flexible enough so I'm trying to come up with a better solution.</p> <p>Without over-explaining it, I'd like it to be a bit like <a href="http://bitbucket.org/hakanw/django-better-chunks/wiki/Home" rel="nofollow">django-better-chunks</a> or <code>django-flatblocks</code>. You set up an editable region entirely from within the template. I want to bind these editable regions to a mix of strings and object instances. One example would be having multiple editable regions based on one product:</p> <pre><code>{% block product_instance "title" %} {% block product_instance "product description" %} </code></pre> <p>So if you have a view with another product as <code>product_instance</code> those two <code>blocks</code> would show different data. I would also see there being use for site-wide blocks that only pass through the string part. Essentially, I would like to be able to pass 1-infinity identifiers.</p> <p>But I'm really struggling on two fronts here:</p> <ol> <li><p>How do I define the relationship between the mixed identifier and the actual content "<code>block</code>" instance? I have a feeling contenttypes might feature here but I've really no idea where to start looking!</p></li> <li><p>And how do I write a template tag to read the above syntax and convert that into an object for rendering?</p></li> </ol> http://stackoverflow.com/questions/1816176/how-to-convert-seconds-to-hhmmss-with-the-djangos-date-template-tag 0 How to convert seconds to hh:mm:ss with the Django's date template tag ? pierre-guillaume-degans 2009-11-29T17:46:02Z 2009-12-01T12:46:22Z <p>Hello,</p> <p>Edit : is there a way to easily convert <code>{{ value|date:"Z" }}</code> to one of the +hh:mm or -hh:mm formats (because date:"Z" returns xxxx or -xxxx seconds).</p> <p>Show <a href="http://dev.w3.org/html5/spec/Overview.html#valid-global-date-and-time-string" rel="nofollow">this</a> for more explanations about the needed format.</p> <p>Thank you and sorry for my ugly english. ;)</p> http://stackoverflow.com/questions/1820852/django-redirect-not-working 0 Django redirect not working sico87 2009-11-30T16:28:44Z 2009-12-01T03:55:52Z <p>I can see the problem, I attached my code and error page.</p> <p>In my template, I have:</p> <pre><code>{% if user.get_profile.is_store %} &lt;!--DO SOME LOGIC--&gt; {%endif%} </code></pre> <p>In my view, I have:</p> <pre><code>def downloads(request): """ Downloads page, a user facing page for the trade members to downloads POS etc """ if not authenticated_user(request): return HttpResponseRedirect("/professional/") if request.user.get_profile().is_store(): return HttpResponseRedirect("/") user = request.user account = user.get_profile() downloads_list = TradeDownloads.objects.filter(online=1)[:6] downloads_list[0].get_thumbnail() data = {} data['download_list'] = downloads_list return render_to_response('downloads.html', data, RequestContext(request)) </code></pre> <p>Environment:</p> <pre><code> Request Method: GET Request URL: http://localhost:8000/professional/downloads Django Version: 1.1.1 Python Version: 2.6.2 Installed Applications: ['django.contrib.auth', 'django.contrib.admin', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'sico.news', 'sico.store_locator', 'sico.css_switch', 'sico.professional', 'sico.contact', 'sico.shop', 'tinymce', 'captcha'] Installed Middleware: ('django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', </code></pre> <p>My error report:</p> <pre><code>Traceback: File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/base.py" in get_response 92. response = callback(request, *callback_args, **callback_kwargs) File "/var/www/sico/src/sico/../sico/professional/views.py" in downloads 78. if request.user.get_profile().is_store(): File "/var/www/sico/src/sico/../sico/shop/models.py" in is_store 988. return not self.account is None File "/usr/local/lib/python2.6/dist-packages/django/db/models/fields/related.py" in __get__ 191. rel_obj = self.related.model._base_manager.get(**params) File "/usr/local/lib/python2.6/dist-packages/django/db/models/manager.py" in get 120. return self.get_query_set().get(*args, **kwargs) File "/usr/local/lib/python2.6/dist-packages/django/db/models/query.py" in get 305. % self.model._meta.object_name) Exception Type: DoesNotExist at /professional/downloads Exception Value: Account matching query does not exist. </code></pre> <p>My BaseAccount Class</p> <pre><code>class BaseAccount(models.Model): user = models.ForeignKey(User, unique=True) def __unicode__(self): """ Return the unicode representation of this customer, which is the user's full name, if set, otherwise, the user's username """ fn = self.user.get_full_name() if fn: return fn return self.user.username def user_name(self): """ Returns the full name of the related user object """ return self.user.get_full_name() def email(self): """ Return the email address of the related user object """ return self.user.email def is_store(self): return not self.account is None def is_professional(self): return not self.professional is None </code></pre> <p>My Account class`</p> <pre><code>lass Account(BaseAccount): """ The account is an extension of the Django user and serves as the profile object in user.get_profile() for shop purchases and sessions """ telephone = models.CharField(max_length=32) default_address = models.ForeignKey(Address, related_name='billing_account', blank=True, null=True) security_question = models.ForeignKey(SecurityQuestion) security_answer = models.CharField(max_length=200) how_heard = models.CharField("How did you hear about us?", max_length=100) feedback = models.TextField(blank=True) opt_in = models.BooleanField("Subscribe to mailing list", help_text="Please tick here if you would like to receive updates from %s" % Site.objects.get_current().name) temporary = models.BooleanField() def has_placed_orders(self): """ Returns True if the user has placed at least one order, False otherwise """ return self.order_set.count() &gt; 0 def get_last_order(self): """ Returns the latest order that this customer has placed. If no orders have been placed, then None is returned """ try: return self.order_set.all().order_by('-date')[0] except IndexError: return None def get_currency(self): """ Get the currency for this customer. If global currencies are enabled (settings.ENABLE_GLOBAL_CURRENCIES) then this function will return the currency related to their default address, otherwise, it returns the site default """ if settings.ENABLE_GLOBAL_CURRENCIES: return self.default_address.country.currency return Currency.get_default_currency() currency = property(get_currency) def get_gateway_currency(self): """ Get the currency that an order will be put through protx with. If protx currencies are enabled (settings.ENABLE_PROTX_CURRENCIES), then the currency will be the same returned by get_currency, otherwise, the site default is used """ if settings.ENABLE_PROTX_CURRENCIES and settings.ENABLE_GLOBAL_CURRENCIES: return self.currency return Currency.get_default_currency() gateway_currency = property(get_gateway_currency) </code></pre> <p>`</p> http://stackoverflow.com/questions/795976/is-there-anything-in-the-django-python-world-equivalent-to-simplepie-plugin-for 1 Is there anything in the Django / Python world equivalent to SimplePie Plugin for Wordpress? rick 2009-04-28T02:09:21Z 2009-11-30T13:42:07Z <p>I know that SimplePie itself is derived from UFP, but the features I'm wondering about are the post-processing features that are available in SimplePie for WordPress plugin:</p> <p><a href="http://simplepie.org/wiki/plugins/wordpress/simplepie_plugin_for_wordpress/processing" rel="nofollow">http://simplepie.org/wiki/plugins/wordpress/simplepie_plugin_for_wordpress/processing</a></p> <p>Can I find something similar to this for my Django application?</p> <p>Can this be accomplished using Django inclusion tags?</p> http://stackoverflow.com/questions/1809874/get-type-of-django-form-widget-from-within-template 0 Get type of Django form widget from within template Oli 2009-11-27T17:29:11Z 2009-11-27T19:44:22Z <p>I'm iterating through the fields of a form and for certain fields I want a slightly different layout, requiring altered HTML.</p> <p>To do this accurately, I just need to know the widget type. It's class name or something similar. In standard python, this is easy! <code>field.field.widget.__class__.__name__</code></p> <p>Unfortunately, you're not allowed access to underscore variables in templates. <strong>Great!</strong></p> <p>You <em>can</em> test <code>field.field.widget.input_type</code> but this only works for text/password <code>&lt;input ../&gt;</code> types. I need more resolution that that.</p> <p>To me, however difficult it might look, it makes most sense to do this at template level. I've outsourced the bit of code that handles HTML for fields to a separate template that gets included in the field-loop. This means it is consistent across <code>ModelForm</code>s and standard <code>Form</code>s (something that wouldn't be true if I wrote an intermediary Form class).</p> <p>If you can see a universal approach that doesn't require me to edit 20-odd forms, let me know too!</p> http://stackoverflow.com/questions/1806449/permission-denied-in-django-template-using-djapian 0 "Permission Denied" in Django template using Djapian prometheus 2009-11-27T01:56:18Z 2009-11-27T04:42:52Z <p>I've followed the Djapian tutorial and setup everything "by the book" so that the indexshell commandline supplied by Djapian shows successful queries.</p> <p>However, when integrating the sample search from the Djapian tutorial I get this nonsense error:</p> <blockquote> <p>TemplateSyntaxError at /search/</p> <p>Caught an exception while rendering: (13, 'Permission denied')</p> </blockquote> <p>It points to this line:</p> <blockquote> <p>{% if results %} </p> </blockquote> <p>Changing or omitting the line will yield the next (same) error at whichever line that references a field from "results".</p> <p>The stacktrace shows this exception:</p> <blockquote> <p>OSError(13, 'Permission denied')</p> </blockquote> <p>in:</p> <blockquote> <p>/usr/local/lib/python2.6/dist-packages/django/template/debug.py in render_node</p> </blockquote> <p>django-debug-toolbar shows for results:</p> <blockquote> <p>&lt;djapian.resultset.ResultSet object at 0x7f7142affcd0&gt;</p> </blockquote> <p>Is this an issue with Djapian? In any case, why would it yield a "Permission denied" error?</p> http://stackoverflow.com/questions/1804777/check-if-a-session-variable-is-set 0 Check if a session variable is set 47 2009-11-26T16:58:52Z 2009-11-26T17:00:34Z <p>I'd like to check if a certain variable is set inside my template...if it is set, an image will be displayed...I have written this as below in my template, but apparently it's not working.</p> <pre><code>{% if request.session.chosen_year %} &lt;a href="/undo_year/"&gt; &lt;img src="{{ MEDIA_URL }}img/undo.gif" border="0" alt="Reset" /&gt; &lt;/a&gt; {% endif %} </code></pre> <p>What have I missed?</p> http://stackoverflow.com/questions/1779055/problem-with-logic-in-django-template 0 Problem with logic in Django template Juanjo Conti 2009-11-22T15:34:45Z 2009-11-22T19:52:34Z <p>Supose this portion of a Django template. regs is a list of Reg objects. Reg.editable is a BooleanField. I want to render a radio button per element in the list. If r.editable is False, the radio button must be disabled:</p> <pre><code>{% for r in regs %} &lt;input type="radio" value="{{ forloop.counter }}" {% if forloop.first %}checked="checked"{% endif %} {% if not r.editable %}disabled="disabled"{% endif %}/&gt; {% endfor %} </code></pre> <p>As you can see, I'm using forloop.first to check the first radio button, but this has a problem! What about if the first element has editable == False? The first radio button will be rendered disabled and chequed. If then a user submit "the form" I'll receive a value not expected.</p> <p>Am I clear with the problem here? How can I rewrite this template to render as checked the FIRST ENABLED radio button?</p> <p>Thanks</p> http://stackoverflow.com/questions/1772223/calling-small-app-in-template-django 0 Calling small app in template : Django Fifth-Edition 2009-11-20T17:54:20Z 2009-11-20T21:25:29Z <p>Lets say I have a website with a small application that lists the 10 newest members, or something dynamic like that. I want this to view on every page, perhaps in a sidebar. How would i go about doing this.</p> <p>My thoughts on the mather...<br> I might not get the whole django thing just yet, but when I have a url like /foo/ calling a view bar - but what info do I have to send to the template from this view. Does every view have to send the info to the template (just so I can view my app) or is there someway to call this from the template instead. </p> <p>I have tried to read through the documentation, but its seems I just can't understand this. </p> <p>Thanks</p> http://stackoverflow.com/questions/1759939/how-to-produce-a-list-ordered-by-a-manytomany-field-and-display-it-using-ifcha 0 How to produce a list ordered by a manyToMany field and display it using {% ifchanged %} in a template? artifex 2009-11-18T23:45:58Z 2009-11-19T02:31:59Z <p>I have two models, EqTD (EquivalentTextDescription) and location. EqTD has a manytomany relation to location. I need to produce a list of all EqTDs ordered by location name ('name' is a field in the location model). I'm getting the queryset of EqTDs thus:</p> <pre><code>tEqTDs = EqTD.objects.order_by('location__name') </code></pre> <p>which I'm hoping will produce duplicates, if they exist, when the same EqTD is linked to more than one location.</p> <p>In the HTML template, I want to use {% ifchanged %} to put a header with the location name above each group of EqTDs. However, this code:</p> <pre><code>{% for eqtd in object_list %} {% ifchanged %} &lt;tr&gt;&lt;td colspan="2"&gt;&lt;h3&gt; {{ eqtd.location.name }} &lt;/h3&gt;&lt;/td&gt;&lt;/tr&gt; {% endifchanged %} ... {% endfor %} </code></pre> <p>outputs nothing. I realized that eqtd.location.name is probably meaningless. Which location?</p> <p>It was suggested that I use annotate() to add the location name to each item in the queryset, like this:</p> <pre><code>tEqTDs = EqTD.objects.annotate( eqtd_loc = 'location__name').order_by('eqtd_loc') </code></pre> <p>but this results in an Attribute Error: 'str' object has no attribute 'lookup'.</p> <p>Is annotate() is expecting a callable?</p> <p>This <strong>must</strong> be a common pattern. What's the key?</p> http://stackoverflow.com/questions/1726640/using-keys-with-spaces 2 Using keys with spaces Dan Hook 2009-11-13T01:50:47Z 2009-11-17T22:07:49Z <p>Is there a way to do something like the following in Django templates?</p> <pre><code> {% for hop in hops%} &lt;tr&gt; &lt;td&gt;{{ hop.name }}&lt;/td&gt; &lt;td&gt;{{ hop.mass }}&lt;/td&gt; &lt;td&gt;{{ hop."boil time" }}&lt;/td&gt; &lt;/tr&gt; {% endfor %} </code></pre> <p>The hop."boil time" doesn't work. The simple solution is rename the key boil_time, but I'm interested in alternatives. </p> http://stackoverflow.com/questions/1746962/how-can-i-get-a-variable-passed-into-an-included-template-in-django 0 How can I get a variable passed into an included template in django Orca 2009-11-17T06:25:42Z 2009-11-17T18:46:12Z <p>Hi,</p> <p>I am a Django newbie and am unable to achieve something trivial. Please help me with this.</p> <ol> <li>I am setting a variable pgurl in my views.py</li> <li>Am able to access the variable {{pgurl}} in my with_tag.html template. This template includes a pagination.html template into itself</li> <li>In pagination.html I am unable to use the variable {{pgurl}} and nothing is printed</li> </ol> <p>How can I get this variable passed into the included template?</p> <h1>views.py</h1> <pre><code>def with_tag(request, tag, template_name='main/with_tag.html', current_page=1, pgurl=''): if request.method == 'GET': query_tag = Tag.objects.get(name=tag) primes = TaggedItem.objects.get_by_model(Prime, query_tag) primes = primes.order_by('-date') request.page = current_page tcm_pp = TCM_ITEMS_PER_PAGE pgurl = request.path else: return HttpResponseRedirect(request.path) return direct_to_template(request, template_name, { 'primes' : primes, 'prime_total' : Prime.objects.count(), 'now': datetime.now(), 'page' : current_page, 'tcm_pp' : tcm_pp, 'tag' : tag, 'pgurl' : pgurl }) </code></pre> <h1>with_tag.html</h1> <pre><code>{% extends "base.html" %} {% load comments %} {% load pagination_tags %} ... {% include "pagination.html" %} {% paginate %} </code></pre> <h1>pagination.html</h1> <pre><code>{% if is_paginated %} {% load i18n %} &lt;div class="pagination"&gt; {% if page_obj.has_previous %} &lt;a href="{{ pgurl }}{{ page_obj.previous_page_number }}{{ getvars }}" class="prev"&gt;&amp;lsaquo;&amp;lsaquo; {% trans "previous" %}&lt;/a&gt; {% else %} &lt;span class="disabled prev"&gt;&amp;lsaquo;&amp;lsaquo; {% trans "previous" %}&lt;/span&gt; {% endif %} {% for page in pages %} {% if page %} {% ifequal page page_obj.number %} &lt;span class="current page"&gt;{{ page }}&lt;/span&gt; {% else %} &lt;a href="{{ pgurl }}{{ page }}{{ getvars }}" class="page"&gt;{{ page }}&lt;/a&gt; {% endifequal %} {% else %} ... {% endif %} {% endfor %} {% if page_obj.has_next %} &lt;a href="{{ pgurl }}{{ page_obj.next_page_number }}{{ getvars }}" class="next"&gt;{% trans "next" %} &amp;rsaquo;&amp;rsaquo;&lt;/a&gt; {% else %} &lt;span class="disabled next"&gt;{% trans "next" %} &amp;rsaquo;&amp;rsaquo;&lt;/span&gt; {% endif %} &lt;/div&gt; {% endif %} </code></pre> http://stackoverflow.com/questions/1744339/does-django-cache-templates-automatically 0 Does Django cache templates automatically? Matt McCormick 2009-11-16T19:32:46Z 2009-11-16T20:41:21Z <p>I'm new to Django and trying to implement a voting system between two images. However, it looks like the page is being cached or something because when I refresh it, some values are wrong. I have no cache setup in my Settings.</p> <p>Here is the View:</p> <pre><code>def rate(request, type): photos = Photo.objects.order_by('?')[:2] c = Context({"photos": photos, "type": type}) return render_to_response("base_rate.html", c) </code></pre> <p>and the template:</p> <pre><code>{% extends "base.html" %} {% block body %} &lt;div class="photo"&gt; &lt;img src="{{photos.0.photo.url}}" alt="Photo" /&gt; &lt;a href="/rate/vote/{{photos.0.id}}/{{photos.1.id}}" class="vote"&gt;Vote&lt;/a&gt; &lt;a href="/rate/flag/{{photos.0.id}}" class="flag"&gt;Flag&lt;/a&gt; &lt;/div&gt; &lt;div class="photo"&gt; &lt;img src="{{photos.1.photo.url}}" alt="Photo" /&gt; &lt;a href="/rate/vote/{{photos.1.id}}/{{photos.0.id}}" class="vote"&gt;Vote&lt;/a&gt; &lt;a href="/rate/flag/{{photos.1.id}}" class="flag"&gt;Flag&lt;/a&gt; &lt;/div&gt; {% endblock %} </code></pre> <p>Some pages will contain wrong info for the objects. Here is an example source that I am getting:</p> <pre><code>&lt;div class="photo"&gt; &lt;img src="/img/rate/16photo1.jpg" alt="Photo" /&gt; &lt;a href="/rate/vote/16/17" class="vote"&gt;Vote&lt;/a&gt; &lt;a href="/rate/flag/16" class="flag"&gt;Flag&lt;/a&gt; &lt;/div&gt; &lt;div class="photo"&gt; &lt;img src="/img/rate/17photo2.jpg" alt="Photo" /&gt; &lt;a href="/rate/vote/16/16" class="vote"&gt;Vote&lt;/a&gt; &lt;a href="/rate/flag/16" class="flag"&gt;Flag&lt;/a&gt; &lt;/div&gt; </code></pre> <p>The second Vote href should be "/rate/vote/17/16" and the flag href should be "/rate/flag/17" but something is going wrong and I am getting inconsistent data.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1724569/dynamically-display-field-values-in-django-template-object-x 1 Dynamically Display field values in Django template (object.x) Issy 2009-11-12T19:02:24Z 2009-11-12T23:11:20Z <p>Hi Guys,</p> <p>I am currently working on an app that uses custom annotate querysets. Currently i have 2 urls setup, but i would need one for each field that the users would like to summarize data for. This could be configured manually, but it would violate DRY! I would basically have +-8 urls that basically do the same thing. </p> <p>So here is what i did,</p> <ol> <li>I have a created custom model manager</li> <li>I have a view</li> <li>I have the URLS configured</li> </ol> <p>All of the above works.</p> <p>So basically the URL config passes to the view the name of the field to annotate by (group by for SQL folks), the view does some additional processing and runs the custom model manager based on the field that was passed to it. </p> <p>The URL looks like this:</p> <pre><code>url('^(?P&lt;field&gt;[\w-]+)/(?P&lt;year&gt;\d{4})/(?P&lt;month&gt;\d+)/(?P&lt;day&gt;\d+)/$','by_subtype', name='chart_link'), </code></pre> <p>The <em>field</em> is the column in db the that is used when the queryset is actually run. It is passed from the view, to my custom manager. Below is an example of the code from the manager:</p> <pre><code>return self.filter(start_date_time__year=year).filter(start_date_time__month=month).filter(start_date_time__day=day).values(field).annotate(Count(field)) </code></pre> <p>In addition, i pass the value of <em>field</em> as context variable. This is used to dynamically build the links. However the problem is actually looping through the query set and displaying the data.</p> <p>So your typical template code looks like this:</p> <pre><code>{% for object in object_list %} {{ object.sub_type }} : {{ object.sub_type__count|intcomma }} {% endfor %} </code></pre> <p>Basically you have to hard code the field to diplay (i.e object.x), is there anyway to dynamically assign this? i.e if field = business then in the template it should automatically process: </p> <pre><code>{{ object.business }} </code></pre> <p>Can this be done? Or would i need to create several URLS? Or is there a better way to achieve the same result, a single view and url handling queries dynamically.</p> <p>You can find the code over at github, the template part is now working using this snippet: <a href="http://www.djangosnippets.org/snippets/1412/" rel="nofollow">http://www.djangosnippets.org/snippets/1412/</a> So if you come across this later and want to do something similar have a look at the code snippet at github. : <a href="http://gist.github.com/233262" rel="nofollow">http://gist.github.com/233262</a></p> http://stackoverflow.com/questions/1724466/can-we-append-to-a-block-rather-than-overwrite 5 Can we append to a {% block %} rather than overwrite? PKKid 2009-11-12T18:45:51Z 2009-11-12T18:49:04Z <p>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.</p> http://stackoverflow.com/questions/636549/how-to-make-project-templates-and-satchmo-templates-co-exist 1 How to make project templates and Satchmo templates co-exist? Soviut 2009-03-11T21:57:20Z 2009-11-12T07:00:02Z <p>I'm working with a Satchmo installation that resides within an existing project. This project has its own templates as well as templates for some of the various apps that are installed. Some of these app-specific templates have their own app_base.html variations that expect to derive form base.html. I'd like to be able to do the same thing with my Satchmo templates and have them reside within my project's base, but also have some additional html added around all of them.</p> <ul> <li>/templates <ul> <li>base.html</li> <li>index.html</li> <li>/news <ul> <li>news_base.html (extends base.html and adds news-specific template features)</li> <li>index.html</li> <li>detail.html</li> </ul></li> <li>/store <ul> <li>base.html (overriding Satchmo's base) </li> </ul></li> </ul></li> </ul> <p>This structure works somewhat, but not how I expected. in /store/base.html (Satchmo's base) I've simply replaced everything with a test message. I can see the message, so I know satchmo is loading its base and not the site's base. However, I can't extend my project's base anymore since using:</p> <pre><code>{% extends "base.html %} </code></pre> <p>Yields a recursion error since its calling itself and the following simply won't work.</p> <pre><code>{% extends "../base.html" %} </code></pre> <p>I realize that I can change my project's base.html to a slightly different name and point all app-specific templates at them, but it seems like a pretty major hack on such a fundamental aspect of the template structure.</p> http://stackoverflow.com/questions/1717715/customize-html-output-of-django-modelform 1 Customize HTML Output of Django ModelForm Mark Stahler 2009-11-11T20:05:51Z 2009-11-11T20:22:00Z <p>I am trying to add multiple inline form items to a page using Djangos ModelForms. I need Select boxes bound to database models. The forms are formatted and placed in a tabular format so I need to display only the ModelForm without ANY surrounding HTML.</p> <pre><code>class LeagueForm(ModelForm): league = forms.ModelChoiceField(queryset=League.objects.all(), empty_label='Manual Team Entry:', required=False) class Meta: model = League exclude = ['league_name'] </code></pre> <p>Template:</p> <pre><code>{% if selected_sport == 1 %} &lt;td&gt;{{ nhl_form.as_p }}&lt;/td&gt; {% else %} </code></pre> <p>The problem is I dont want the paragraph tags, nor tables tags or anything at all. I need to have the form nicely sit where I place it without garbling up the surrounding html.</p> <p>Can anyone please point me in the right direction? Thanks</p> http://stackoverflow.com/questions/1715908/optional-imagefield-django 0 Optional ImageField (Django) John McCollum 2009-11-11T15:25:01Z 2009-11-11T16:02:32Z <p>Hi all,</p> <p>I'm having a problem with an ImageField in one of my models. It is set to blank=True, null=True (it is optional.) </p> <p>When I loop through a list of objects and use object.thumbnail.url, I get "Caught an exception while rendering: The 'thumbnail' attribute has no file associated with it." </p> <p>This only happens if no thumbnail has been uploaded, obviously.</p> <p>Does anyone have any ideas on the best way to deal with that?</p>