Re: Extended pages - wait and render with parent template

2015-07-11 Thread Peith Vergil
I think the issue here is in how you're loading jQuery. It doesn't seem like jQuery has been loaded successfully. Make sure the path to your jQuery file is correct. This seems more like a client side issue rather than a server side (Django) issue. When Django sends the HTML response to your browse

Re: Extended pages - wait and render with parent template

2015-07-11 Thread James Schneider
The browser/client does not get two 'chunks' of HTML, Django renders the entire page first and sends the entire rendered piece at once after rendering both templates. If you need your JS to be interpreted earlier, add an extra {% block %} to template_A up in the section, and override that block r

Extended pages - wait and render with parent template

2015-07-11 Thread Nkansah Rexford
If template B extends template A, template B renders/parses its content independently before being added to the parent A template. Is there a way to make template B *wait* and render only *after* when added to the parent A template? Independent rendering of extended pages ( same thing happens w

Re: Installing Django and Python 3.4 on a freshly registered Debian VPS

2015-07-11 Thread Marek Turnovec
> > > Just searching the net I found: > http://www.extellisys.com/articles/python-on-debian-wheezy . It has > information about how to install python 3.4 on If possible switch to an > ubuntu server instead, because then you will get python 3.4 as standard. > > I think that it's not necessary. I

Create Read Update Delete Master Data Spread over Multiple Models

2015-07-11 Thread Samuel Bächler
Hi everyone, In the django documentation I found how to create, read, update and delete on a single model (Author) with django (see here ). In my application I want to create, read, update and delete master data of an "employee