Is there a way to disable QuerySet caching? Thanks.
-Brandon
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe fr
Thanks.
On Jan 2, 8:47 pm, Jeff Anderson <[EMAIL PROTECTED]> wrote:
> From the template docs:http://www.djangoproject.com/documentation/templates/
>
> {% for key, value in data.items %}
> {{ key }}: {{ value }}
> {% endfor %}
>
> Note that this is for the svn vers
I have a simple view:
def index(request):
this_dict = { 'one':'','two':'', 'three':''}
c = Context({"this_dict":this_dict})
return HttpResponse(t.render(c))
my template is like so:
{% for i in this_dict %}
key: {{i}}
value:{{this_dict.i}}
{% endfor %}
3 matches
Mail list logo