django-context refers to the special django.template.Context class used for passing data from the view to the template
0
votes
1answer
25 views
Passing django contexts between apps
So I'm fairly new to Django and am creating some simple websites. Right now I am trying to create a website that can be used to host some of my other apps. At the moment, the main site renders the ...
0
votes
1answer
20 views
Unable to reverse view in middleware
I'm trying to do catch a missing variable in a Django rotue with middleware - however I am unable to reverse the URL as Django cannot find the view (even though it exists in urlconf). For example:
...
0
votes
1answer
60 views
Django: How can i get the url of a template by giving the namespace?
While i'm rendering a template i would like to retrieve the url of the template by giving the namespace value and not the path. For example instead of this:
return render(request, 'base/index.html', ...
1
vote
3answers
66 views
Django TEMPLATE_CONTEXT_PROCESSORS are being called too many times
I need show some statistic numbers in all pages, so I decided to use context processors. But I just figured out that my function is being called 2 to 7 times every page load. I am doing 4 queries ...
0
votes
2answers
121 views
Django - Extra context in django-registration activation email
I'm using django-registration for a project of mine.
I'd like to add some extra contextual data to the template used for email activation.
Looking into the register view source, I cannot figure out ...
0
votes
2answers
54 views
django automatically pass context to specific templates only
I have context in a dict:
### settings.py. ###
CONTEXT = {'a':'b'}
And two templates that use that context t1.html and t2.html:
### t1.html ###
{{ a }}
### t2.html ###
{{ a }}
Both are meant to ...
1
vote
2answers
283 views
Access to RequestContext in Django template?
I don't seem to have access to the request object in my django templates.
Here's part of my settings.py file:
import django.conf.global_settings as DEFAULT_SETTINGS
TEMPLATE_CONTEXT_PROCESSOR = ...
0
votes
1answer
81 views
session variable or extra context?
I need to have a few variables accessible on almost every view. I think I can see how to do it either using a context processor and "extra context" values, or by using session variables. Are there ...
0
votes
3answers
151 views
How to inject template context variable only if it doesn't exist
I have a base_template.html that uses a context variable my_context_var. All of my other templates extends this base template. Can you help me answer one of these questions? (They are just different ...
1
vote
3answers
234 views
Context Processor for Django Site
I'm builing a wedding website creator (no judgement please).
Almost every view needs to call a Wedding.objects.get(id=wedding_id) and then pass it to the template as part of the variables.
Seems ...
0
votes
1answer
27 views
Is there a shorter way to check for a value in M2M in a Django template?
In every page (base.html), I want to check whether request.user has an administrator role from my class UserTypes and show the admin link. Currently I do something like this:
{% if ...
2
votes
2answers
382 views
Context processors vs middleware in django
It seems to me that everything a context processor can do, middleware can do. So what's the point of context processors? Are they just middleware-lite?
0
votes
1answer
47 views
How can I get the template context from the template loader in Django?
I need to load some templates which path depends of their context. I created a custom Loader. How can I access to the context of the template from my custom template loader?
0
votes
1answer
107 views
A thread-safe template context processor in Django?
What is the best practice for writing a thread-safe context processor in Django?
Say, I want to pass some variables to templates, which
are set in the corresponding views, and could be different for
...
0
votes
1answer
76 views
Change to my left nav bar when on a certain page?
Maybe I'm going about this all the wrong way... But what I'm trying to do is change the left navigation by what page I'm on. The left nav in base.html is apparent throughout, but once the user is on ...
0
votes
3answers
486 views
Django - Access Context Dictionary Before Template
I'm hoping to use a context processor or middleware to modify the values of the dictionary passed to render_to_response prior to the actual rendering. I have a messaging schema I'm trying to ...
0
votes
2answers
391 views
Accessing global variable in view using context processor in Django
Assuming I have a context processor:
def title(request):
return {'titles': 'mytitle'}
I can access this variable in template as {{ titles }}.
But how can I do so in a view?
def ...
0
votes
2answers
503 views
Django messages framework not working in template loop
I recently upgraded to Django 1.3 and I want to start using the Messages system.
I have added my Middleware, Template context processors and also messages into the INSTALLED_APPS
MIDDLEWARE_CLASSES ...
1
vote
2answers
731 views
RequestContext on django redirect()
I'm wondering if there is any way to include the RequestContext in the django redirect function or any other context.
The thing is that I need to add a message after an object is created, but the ...
0
votes
1answer
130 views
Following relationships “backward” in context processor
I did template processor uses the backward following relationship. In the shell it works OK, but in the view I have an error:
'ParentCategory' object has no attribute 'postpages_set'
model (a ...
4
votes
2answers
2k views
Django {{site}} template context not working?
This should be a super simple one. I'm pretty sure that I've used this context successfully in the past in my templates for linking purposes. My belief was that this was built into the RequestContext ...
1
vote
2answers
133 views
Django: Does DRY fundamentally conflict with logic separation?
This is similar to this question: A way to use method parameters in django templates?
I understand (and agree with and appreciate) the basic django philosophy of separation of business logic from ...
3
votes
4answers
921 views
Django Context Processors: Is it possible to access current context in ContextProcessor?
Is there a way I can access current context passed by view in custom context processor so I can add missing variable if I want rather than overriding existing variable ?
What I'm trying to Achieve:
...
1
vote
2answers
205 views
Conditional context processor for authenticated users
I have a context processor returning list of users friends. I'd like it to return the dictionary of friends only if user is logged in, because currently I have clean database without any users and I'm ...
0
votes
1answer
145 views
Django web interface to store queries and define context
I'm open to persuasion that this is a bad idea. But if not, here's the general draw:
Web interface to maintain data (django.contrib.admin).
Web interface to create pages (django.contrib.flatpages)
...
0
votes
3answers
345 views
Is content from AJAX call added to Django context variable
I am using the JQuery load function to load part of my page. Can I access the variables from that page in the page that loads it. e.g.
Page A uses JQuery load function to load B
Page B loads and ...
6
votes
1answer
2k views
Unable to get custom context processor to be invoked
I am trying to create a custom context processor which will render a list of menu items for a logged in user. I have done the following:-
Within my settings.py I have
TEMPLATE_CONTEXT_PROCESSOR = ...
2
votes
1answer
252 views
Django template context function without running automatically
Sorry or the confusing title! It's actually a lot simpler than it sounds.
I've got a function:
def get_messages(request):
# do something expensive with the request
return 'string'
I want ...