Give space in the html template tag
I mean {% extends 'base.html' %}
But if the base is nested inside a directory inside the template directory
pls name the '../base.html' according.
Thanks
Hope it will be help.
On Mon, Oct 10, 2022, 16:11 Namanya Daniel
wrote:
> hello, someone help me out. am n
Make sure the template directory is located in the app directory or if it
is in a different directory, ensure the location is specified at the
template section in the settings.py file
On Mon, Oct 10, 2022 at 3:11 PM Namanya Daniel
wrote:
> hello, someone help me out. am new to django and i face
hello, someone help me out. am new to django and i face an issue with
templates extending base.html
i have created a base.html template which is basically a skeleton for other
templates, they are all in templates/another directory but when i use
{%extends 'base.html'%} I get this error... than
hese
saved properties to dynamically alter the UI.
On Mon, May 24, 2021 at 10:05 PM sebasti...@gmail.com <
sebastian.ju...@gmail.com> wrote:
> Hello,
>
> i want that every user from website can upload a base html file that are
> then used on every views as base template.
Hello,
i want that every user from website can upload a base html file that are
then used on every views as base template. Every User have then his own
layout...
Have anyone experience with such a thing?
Regards
--
You received this message because you are subscribed to the Google Groups
Hi,
Look at the flatpages docs.
https://docs.djangoproject.com/en/2.0/ref/contrib/flatpages/
2017-10-16 9:06 GMT-02:00 Bernd Wechner :
> Curious and I admit lazy question as I don't even know where to look or
> how for such a general idea. But there it is, I'd like to be able to write
> a stat
Curious and I admit lazy question as I don't even know where to look or
how for such a general idea. But there it is, I'd like to be able to
write a static HTML file (like say about.html) and render that inside of
the sites style and basic template.
So I have base.html for example, which conta
,
enterpriseuser, enterprise_child_user, admin.
Second: There are two user background manager page, one for staff to manage
order, enterprise. one for normaluser to manage themself order. So there
are two url path: /staff_bg/ /user_bg/
But they are use the same base template, the only different is the
Thank you! An assignment tag solved my issue perfectly!
Em quinta-feira, 17 de julho de 2014 11h59min26s UTC-3, cmawe...@gmail.com
escreveu:
>
> You could make a custom assignment_tag like: {% get_datasets_for_user user
> as dataset %}
>
>
> https://docs.djangoproject.com/en/dev/howto/custom-te
You could make a custom assignment_tag like: {% get_datasets_for_user user
as dataset %}
https://docs.djangoproject.com/en/dev/howto/custom-template-tags/#assignment-tags
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this
l template, which gets from its view context a list of
objects from the database to build a dynamic list. This template is then
used as the base template for a couple of others. So, my views which render
the templates that extend the index must also have my list on their context
in order to
. This way you don’t have to check yourself, if a user is logged
in or not.
Good luck and fun in learning django.
[1] https://docs.djangoproject.com/en/dev/intro/tutorial01/
On Nov 15, 2011, at 15:45 , Levi Campbell wrote:
> I'm trying to create a base template that would display user-
I'm trying to create a base template that would display user-specific
information such as an avatar and the number of unread messages a user
has, what's the best way to do this? I know by reading the
documentation that I can check if a user is logged in, which is a
start, but doesn'
Thanks guys. Just saw this in the admin contrib pages too:D win!
On Jan 18, 7:36 pm, Dave Sayer wrote:
> +1 for conditional comments. They're what all the cool kids are using these
> days.
> On 18 Jan 2011 15:00, "Michel Thadeu Sabchuk" wrote:
>
> > Hi,
>
> >> I have 2 css files. One specificall
+1 for conditional comments. They're what all the cool kids are using these
days.
On 18 Jan 2011 15:00, "Michel Thadeu Sabchuk" wrote:
> Hi,
>
>> I have 2 css files. One specifically for IE because it's so horrible.
>> I'd like to load either or css files depending on the browser.
>
> Why don't yo
Hi there,
I have 2 css files. One specifically for IE because it's so horrible.
I'd like to load either or css files depending on the browser.
I know I have to use
agent = request.META['HTTP_USER_AGENT']
I looked at this http://djangosnippets.org/snippets/77/ but it seems
complex.
All I
Hi,
> I have 2 css files. One specifically for IE because it's so horrible.
> I'd like to load either or css files depending on the browser.
Why don't you use conditional comments?
http://www.quirksmode.org/css/condcom.html
Best regards,
--
Michel Sabchuk
--
You received this message because
On 15/07/10 18:00, natebeacham wrote:
> Or, if you don't want to over complicate things...
Heh. yes, well. :-)
Though doing it on the server does mean it stays working
for people who disable javascript.
--
You received this message because you are subscribed to the Google Groups
"Django users"
wow works like a dream :)
perfect time saver bit of script
thanks :)
On Jul 15, 6:00 pm, natebeacham wrote:
> Or, if you don't want to over complicate things...
>
> $(function() {
> $('#nav li a').each(function() {
> if ($(this).attr('href') == window.location.pathname) {
>
I'm just going to go with nav blocks for the time being and find
something dynamic later...
I was looking at Jquery json cookies but seems a lot of effort for a
small menu
very interesting about context variables, I'll look into this ;)
Thanks
On Jul 15, 5:15 pm, David De La Harpe Golden
wrote:
Or, if you don't want to over complicate things...
$(function() {
$('#nav li a').each(function() {
if ($(this).attr('href') == window.location.pathname) {
$(this).addClass('active');
}
});
});
On Jul 15, 12:15 pm, David De La Harpe Golden
wrote:
> On 15/07/10
On 15/07/10 16:31, justin jools wrote:
> I thought I had solved but I haven't.
> [...]
> using seperate block nav for evey page seems like a lot of
> duplication...
Well, you could also pass through a context variable to the template
from each of your view functions telling what item in your navba
I thought I had solved but I haven't.
Re: That means a whole different page is requested by the browser.
I get your point, you are saying when clicking a link even though the
script and navigation are in base.html it is still loading a new
instance of base.html and therefore can't keep state for jq
Solved it!!!
really stupid! I knew it would be something like this. I removed
class="active" on home, now it works. Seems django was resetting to
default base.html settings. It doesn't do this in straight HTML. So
now I'll have to set the home active onload dynamically.
hope this tip helps someon
On 15/07/10 15:19, justin jools wrote:
>
> $(document).ready(function() {
> $('#nav li a').click(function() {
> $('.active').removeClass('active');
> $(this).addClass(
http://www.djangoproject.com/";>Django
Hosted by
https://servqc.net/";>ServQc.
On Jul 15, 3:11 pm, justin jools wrote:
> the paths are correct, as I have tested the jquery click functi
the paths are correct, as I have tested the jquery click function with
alert ()
I do have child templates and blocks but I took all this out to see
why the jquery was being overriden/reset/disabled by django.
It finds the jquery no problem but always resets to the default base
template, and
same except for
> > {{ MEDIA_URL }} which is correct.
>
> FWIW, we use a jquery load line in our base template and it works fine
> (pretty disastrous for us if it didn't).
>
> You're 100% sure the pathss correct (like when you "view source" the
> rendered p
On 15/07/10 13:40, justin jools wrote:
> 2. base.html with jquery nav, exactly the same except for
> {{ MEDIA_URL }} which is correct.
>
FWIW, we use a jquery load line in our base template and it works fine
(pretty disastrous for us if it didn't).
You're 100% sure the p
wrote:
> the base template should have access to the context. you are doing
> something wrong. sorry thats not helpful but i do what you are trying
> to do all the time.
>
> simplify the template.
>
> you sure its not categories_list or object_list or even category_list
> instead
the base template should have access to the context. you are doing
something wrong. sorry thats not helpful but i do what you are trying
to do all the time.
simplify the template.
you sure its not categories_list or object_list or even category_list
instead of categories.
On Tue, Apr 20, 2010
The other templates doesnt override the categories block... Its just
like:
{% extends "base.html" %}
{% block content %}
some content here
{% endblock %}
I mean, the base template should be receiving the context? Or do I
have to find another solution? I could put a include on the bas
gt; {% endblock %}
>
> {% block conteudo %}
> {% endblock %}
>
>
>
> In the other template files I just extend the base template. But the
> base content dont get the categories by context. If I put this code in
> the final template file everything works fine. But I dont think
{% for categorie in categories %}
{{ categorie.title }}
{% endfor %}
{% endblock %}
{% block conteudo %}
{% endblock %}
In the other template files I just extend the base template. But the
base content dont get the categories by context. If I put this code in
the final template file everything
Thanks Bruno,
>
> First question : does it always happen on the sames pages, or do you
> have a same page sometimes OK and sometimes not ?
> Second question : does it happen with all browsers or only with a
> specific one ?
When it happens, it can be on any browser, I've seen it on 6 different
on
site, reloading pages,
whatever, and couldn't see anything wrong here (using Chrome).
> I'll paste my base template, and a content template and a view at
> dpaste:
>
> http://dpaste.com/173541/ view
Looks like your doing some things the hard way here... I don't have
tim
OK, dare I state the obvious, I am pretty green at this. Thanks for
helping out. I'll try and be more specific:
My site is sitting at http://staging.bluecaravan.net . The 'glitch'
happens fairly frequently (over 50%) and on random pages through the
site.
I'll paste my
On Thursday 18 March 2010 11:17:03 bruno desthuilliers wrote:
> Yes, indeed. Quite obviously, the frobnulator module whizzed, probably
> because of a missing bar going foo.
>
>
> Uh ? Expected a more helpful answer ? Well, what about providing
> enough informations then ?-)
Providing what would
On Mar 18, 6:44 am, timdude wrote:
> Hiya all,
>
> My lovely django app is letting me down (or I'm letting it down). I am
> using a base template with a content template extending this base.
> Half of the time and on random pages, the content template loads at
> the
Hiya all,
My lovely django app is letting me down (or I'm letting it down). I am
using a base template with a content template extending this base.
Half of the time and on random pages, the content template loads at
the bottom of the page/base template.
Anyone know what's going on?
C
Hi,
I adopt django-messages as one of my site's application. Does
anyone know how to add a new message prompt in base template? I mean
how I can get one application's data in base template. Does this make
sense?
Thanks in advance!
--
You received this message because you are
t;>
>> {% block content %}
>> my content goes here...
>>
>> {% for form in forms %}
>> {{ form.as_p }}
>> {% endfor %}
>>
>> {% endblock %}
>>
>>
>> The idea is that the 'base.html' template will *alwa
t make sure it extends base:
>> {# mytemplate.html #}
>> {% extends "base.html" %}
>>
>> {% block content %}
>> my content goes here...
>>
>> {% for form in forms %}
>> {{ form.as_p }}
>> {% endfor %}
>>
>>
and render it. That means that all you
> ever have to do is make sure that the context variable "media"
> contains the cumulative media of what you want to include. Note,
> though, that when you want to use this "extends" approach, you become
> required to work in t
de. Note,
though, that when you want to use this "extends" approach, you become
required to work in those blocks. that's why I put a "content" block
in the base template, and override it in the extended one. Stuff
outside of blocks in mytemplate.html won't get displayed
gt;>
>>
>>
>>> You know what, this is absolutely too much BS. Why would one bother to use
>>> the media declaration stuff at all if there is no mechanism to properly
>>> consume it (a built in template tag for instance).
>>
>>> I think
is absolutely too much BS. Why would one bother to use
> > the media declaration stuff at all if there is no mechanism to properly
> > consume it (a built in template tag for instance).
>
> > I think I will just hardcode them in the head in the base template. They
> > sel
absolutely too much BS. Why would one bother to use
>> the media declaration stuff at all if there is no mechanism to properly
>> consume it (a built in template tag for instance).
>>
>> I think I will just hardcode them in the head in the base template. They
>> s
ance).
>
> I think I will just hardcode them in the head in the base template. They
> seldom change and browser caching being what it is having them never change
> is just fine.
>
> After three weeks of seriously trying to get traction with django, my
> conclusion is it has all
You know what, this is absolutely too much BS. Why would one bother to use the
media declaration stuff at all if there is no mechanism to properly consume it
(a built in template tag for instance).
I think I will just hardcode them in the head in the base template. They
seldom change and
The idea is along the lines of what you initially guessed.
The admin accomplishes the non-duplicate effect in django/django/
contrib/admin/options.py, starting at line 770. It loops over the
forms and combines the existing media with the media on each form
object. It ends up using a series of ob
What about de-duping?
If two forms want the same js file, will it get included twice?
It seems like this is the kind of thing that the framework should handle and
the current "solution" is kind of half baked.
-Todd
On Nov 23, 2009, at 2:40 PM, Mark (Nosrednakram) wrote:
>
> Hello,
>
> I have
Hello,
I have something like the following in my generic genericform.html. I
think this is what you're looking for if not hope you find a better
answer. The extramedia block is back in my base.html template and my
form template extends it. I'm not sure if it's in the admin base.html
but you can
I've read this:
http://docs.djangoproject.com/en/dev/topics/forms/media/
Nifty.
Now, how exactly do I make sure that the media urls get spewed properly into
the head section of the page? This is apparently omitted everywhere I've
looked. The admin template seems to pull it off properly but
On Mon, Jun 8, 2009 at 3:19 PM, pingwin wrote:
>
> Hi,
>
> This is frustrating and against a true MVC methodology. I want to have
> something like this for the designer in the template.
>
> {% if user.is_authenticated %}
> {% extends "auth_base.html" %}
> {% else %}
> {% extends "base.html" %}
Hi,
This is frustrating and against a true MVC methodology. I want to have
something like this for the designer in the template.
{% if user.is_authenticated %}
{% extends "auth_base.html" %}
{% else %}
{% extends "base.html" %}
{% endif %}
However this obviously fails. I do not think it mak
On May 10, 1:14 am, lisa holper wrote:
> No, sorry there is a misunderstanding. I did not use Apache, but just copied
> the html files in my directory of my homepage. So, this does not work? Do I
> need to use Apache?
> thanks again, Lisa
>
Again, you need to read the deployment documentation, a
Fri, May 8, 2009 at 5:57 AM, Eric Abrahamsen wrote:
>>
>>>
>>>
>>> On May 8, 2009, at 4:35 PM, lisa holper wrote:
>>>
>>> Hi,
>>>
>>> I created a websit
t.com/en/dev/intro/tutorial01/#intro-
> > tutorial01
>
> > Eric
>
> >> Thanks, Lisa
>
> >> On Fri, May 8, 2009 at 5:57 AM, Eric Abrahamsen
> >> wrote:
>
> >> On May 8, 2009, at 4:35 PM, lisa holper wrote:
>
> >>> Hi,
>
>
; On May 8, 2009, at 4:35 PM, lisa holper wrote:
>>
>>> Hi,
>>>
>>> I created a website with django.
>>> My problem: When I insert all .html pages in my directory, I can
>>> see the website
:35 PM, lisa holper wrote:
>>
>> Hi,
>>
>> I created a website with django.
>> My problem: When I insert all .html pages in my directory, I can see the
>> website but without using the 'base' template.
>>
>>
>> Do you have
olper wrote:
>
>> Hi,
>>
>> I created a website with django.
>> My problem: When I insert all .html pages in my directory, I can
>> see the website but without using the 'base' template.
>
> Do you have {% extends 'base.html' %} at the top of all
e:
>
> Hi,
>
> I created a website with django.
> My problem: When I insert all .html pages in my directory, I can see the
> website but without using the 'base' template.
>
>
> Do you have {% extends 'base.html' %} at the top of all your templa
On May 8, 2009, at 4:35 PM, lisa holper wrote:
> Hi,
>
> I created a website with django.
> My problem: When I insert all .html pages in my directory, I can see
> the website but without using the 'base' template.
Do you have {% extends 'base.html' %} at t
Hi,
I created a website with django.
My problem: When I insert all .html pages in my directory, I can see the
website but without using the 'base' template.
I would be glad for your help.
Lisa
--~--~-~--~~~---~--~~
You received this message becau
l
for the menus and such work great. However, when I do the exact same
thing with a flatpage, nothing gets translated in the base template.
The introduction.html and flatpages/default.html are nearly the same,
except that my page_title and content blocks are actual content in
introduction.html an
Probably what you want is to make a custom template tag that does the
proper query-to-html business, and then stick that tag in your base
template. Might want to look into caching the result, if it doesn't
change often...
http://www.djangoproject.com/documentation/templates_python/#wr
> Anyone know what I really ought to be doing?
What you want is a default context. Look at
http://www.djangoproject.com/documentation/templates_python/#playing-with-context-objects
Also see
http://www.djangoproject.com/documentation/settings/#template-context-processors.
Pretty much all of our
I have a design issue where i want to have a standard base template
display a list of database entries with a count for the most popular
entries. If I am using this as the base template this means that I
need to pass the list and the calculated count from any view which
calls any template which
should do the trick, thanks
On Apr 28, 7:49 pm, "Ronny Haryanto" <[EMAIL PROTECTED]> wrote:
> On Tue, Apr 29, 2008 at 9:33 AM, skunkwerk <[EMAIL PROTECTED]> wrote:
> > I've got two forms included in my base template, from which a few
> > othe
On Tue, Apr 29, 2008 at 9:33 AM, skunkwerk <[EMAIL PROTECTED]> wrote:
> I've got two forms included in my base template, from which a few
> others inherit. Currently I'm passing a newly-constructed form to
> each of the inherited templates in the functions using
>
I've got two forms included in my base template, from which a few
others inherit. Currently I'm passing a newly-constructed form to
each of the inherited templates in the functions using
render_to_response, like so:
return render_to_response('contact.html', {'form'
Thanks!
On Mar 25, 10:24 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> If it is going to be in every page I would just use the now
> tag(http://www.djangoproject.com/documentation/templates/#now) in
> the base.html
>
> On Mar 25, 9:56 pm, Brandon Taylor <[EMAIL PROTECTED]> wrote:
>
> > Hel
If it is going to be in every page I would just use the now
tag( http://www.djangoproject.com/documentation/templates/#now ) in
the base.html
On Mar 25, 9:56 pm, Brandon Taylor <[EMAIL PROTECTED]> wrote:
> Hello everyone,
>
> Still fairly new to Django, but I'm loving it!
>
> I have a base html t
Hello everyone,
Still fairly new to Django, but I'm loving it!
I have a base html template that I would like to display the current
year in. Where should I put the action that retrieves the current year
if I would like the value to appear on every page?
Thank you,
Brandon
--~--~-~--~---
That worked great for the base template. But how do I pass database
values to a view in an app?
I have a a view that should have all the records available for a
template so that I can loop through each record and display on the
screen. I cannot figure out how to give the template access to the
That is the second time RequestContext has come back to bite me, I
guess I did not understand it the first time. Thanks!
On Feb 20, 6:53 pm, "James Bennett" <[EMAIL PROTECTED]> wrote:
> On Wed, Feb 20, 2008 at 5:18 PM, quizkiwi <[EMAIL PROTECTED]> wrote:
> > Is there some difference in authenti
On Wed, Feb 20, 2008 at 5:18 PM, quizkiwi <[EMAIL PROTECTED]> wrote:
> Is there some difference in authentication between the app and the
> main site?
http://www.djangoproject.com/documentation/templates_python/#subclassing-context-requestcontext
--
"Bureaucrat Conrad, you are technically co
I have a base template that checks whether a user is authenticated or
not:
If so: display "Hello Username, Logout"
If not: display "Login"
It works great until I click a link which will bring me into one of
the apps that I have setup. The app extends the base template, and
o
On Wed, 2008-02-06 at 13:02 -0800, koenb wrote:
> BTW, you can add tags to builtins if you need them all the time.
>
> eg. if you need i18n all over:
>
> from django.template import add_to_builtins
> add_to_builtins('django.templatetags.i18n')
Thanks for the info. Where would I put this?
--
BTW, you can add tags to builtins if you need them all the time.
eg. if you need i18n all over:
from django.template import add_to_builtins
add_to_builtins('django.templatetags.i18n')
Koen
On 6 feb, 20:59, Adam Stein <[EMAIL PROTECTED]> wrote:
> On Wed, 2008-02-06 at 11:31 -0800, Daniel Rosema
On Wed, 2008-02-06 at 11:31 -0800, Daniel Roseman wrote:
> >From the same documentation page you quote above (http://
> www.djangoproject.com/documentation/templates/):
>
> When you load a custom tag or filter library, the tags/filters are
> only made available to the current template -- not any
On 6 Feb, 19:03, Adam Stein <[EMAIL PROTECTED]> wrote:
> Running Django v0.96.
>
> Want to check to see if this behavior is normal. I have a base template
> that uses {% load %}. I have another template that extends the base
> template. The {% load %} tag doesn
Running Django v0.96.
Want to check to see if this behavior is normal. I have a base template
that uses {% load %}. I have another template that extends the base
template. The {% load %} tag doesn't seem to carry into the extended
template. In other words, it looks like I have to use {%
On Mon, 2008-01-07 at 20:28 -0600, Michael Hipp wrote:
[...]
> Is it really necessary to complicate every 'view' method by appending
> 'context_instance=RequestContext(request)' to the render_to_response
> call? This seems totally boilerplate and a violation of DRY.
Write your own shortcut fun
Peter Rowell wrote:
>> There is a mechanism available
>> for that -- context processors -- but people don't want to use it
>> because they want *something else* that happens for every template.
>
> Malcolm's absolutely correct: context processors (I mis-typed when I
> said content processors) is
> There is a mechanism available
> for that -- context processors -- but people don't want to use it
> because they want *something else* that happens for every template.
Malcolm's absolutely correct: context processors (I mis-typed when I
said content processors) is exactly what you want here. T
On 06-Jan-08, at 11:01 PM, Michael Hipp wrote:
> Attempting to do a method call {% views.get_stuff %} just results
> in a 'bad
> tag' error.
>
> Doing it like a variable {{ views.get_stuff }} just seems to be
> ignored.
make a templatetag
--
regards
kg
http://lawgon.livejournal.com
http:
On Sun, 2008-01-06 at 16:12 -0600, Michael Hipp wrote:
> Peter Rowell wrote:
[...]
> > I recommend rethinking how data is passed into and used in your
> > templates. Consider creating your own content processor. Or maybe some
> > custom template tags and/or filters. See
> > http://www.djangoproj
Peter Rowell wrote:
> It
> would probably be better (for any number of reasons) if you put all of
> these types of routines in a utils.py module and import/pass that.
> E.g.
>
> import utils
> return render_to_response('now.html', RequestContext(request, {
> 'utils': utils,
>
> Attempting to do a method call {% views.get_stuff %} just results in a 'bad
> tag' error.
Right, because there is no tag with the name 'views.get_stuff'.
> Doing it like a variable {{ views.get_stuff }} just seems to be ignored.
Not ignored, but it probably fails which the template engine tre
This is probably really simple, but I'm not seeing it.
I have my base.html and sub.html templates. The method that services the sub
template does it's job fine. But in the base template I have a piece of
content that is independent of the sub template. I have a get_stuff() method
i
> > {% for catetory in categorylist %}
> If this is a cut-and-paste of your template, here's your error. Learn to
> spell "category". :-)
Oh how blind was that. Of course that was the problem, thanks a lot :)
After fixing that i got an "always false" instead of "always true".
The debug line wi
On Tue, 2007-06-05 at 11:45 +0200, Sven Broeckling wrote:
> Hi everyone,
>
> i use django for a small fun website, and it's really fun to create
> applications with it. Now i'm stuck with a behaviour i can't
> comprehend.
>
> I have a category list in
Hi everyone,
i use django for a small fun website, and it's really fun to create
applications with it. Now i'm stuck with a behaviour i can't
comprehend.
I have a category list in my base template :
--[snip]--
{%
On Sun, Oct 08, 2006 at 06:27:38PM +0400, Ivan Sagalaev wrote:
> If I correctly suspect that we speak the same language then I can
> recommend my blog post about it:
> http://softwaremaniacs.org/blog/2006/01/12/context-processors/
This is great, it describes first the use case rather than the
f
Hello Ivan,
On Sun, Oct 08, 2006 at 05:54:27PM +0400, Ivan Sagalaev wrote:
> All the extra information (such as {{ user }} or {{ LANGUAGES }}) is
> passed to templates by a RequestContext that processes a number of
> context processors defined in TEMPLATE_CONTEXT_PROCESSORS in settings.
>
> I
Baurzhan Ismagulov wrote:
> I'm using django 0.96 r3709. I have base.html, page1.html, and
> page2.html templates. The latter two extend the former one. base.html
> creates a box with all supported LANGUAGES. This works as
> expected in page1, but not in page2. page1 is a verdjn templatepage
> (r
Hello all,
I'm using django 0.96 r3709. I have base.html, page1.html, and
page2.html templates. The latter two extend the former one. base.html
creates a box with all supported LANGUAGES. This works as
expected in page1, but not in page2. page1 is a verdjn templatepage
(rendered with HttpRespons
t will show up in your templates.
>
> c= RequestContext(request, { ... })
>
> Don
>
>
>
> >
>
Thanks, guys!
I guess to create a user info box and make it available in all the
templates, I'd create a template tag and load it in the base template,
right?
1 - 100 of 126 matches
Mail list logo