Re: Django Tutorials

2013-11-03 Thread Jasvir Singh
On Sat, Oct 26, 2013 at 6:17 PM, Jasvir Singh wrote: > Here is link of my tutorials > http://goo.gl/3jPaf7 Now these tutorials are shifted to my personal domain. http://www.jsgrewal.com/tutorials/django/ @all, critical reviews are needed. -- Jasvir Singh Grewal Blog:http://jasvirsinghgrewal91

Re: Add a generic "getter" filter to the built-in library

2013-11-03 Thread Curtis Maloney
Since we're on the topic after some goading from loic I did figure out a backward-compatible way to add call arguments to the filter expression syntax. Essentially, you distinguish between foo|filter:arg and foo|filter(arg...) by looking for : or ( The same parsing could let you have dict lo

Re: Add a generic "getter" filter to the built-in library

2013-11-03 Thread Russell Keith-Magee
On Sun, Nov 3, 2013 at 9:57 PM, Emanuele Bertoldi < emanuele.berto...@gmail.com> wrote: > I've opened a ticket (#21370) with a proposal for the *inclusion of a > generic "getter" filter* in the built-in library. > > *Why?* > > Well, because at the moment Django's template system really lacks of >

Model Docs Questions

2013-11-03 Thread Cody Scott
I've been reading the documentation and have some questions about certain behaviour. 1 Why does calling .clear() on a intermediate model, delete the intermediate models? source >>> Membership.o

Re: Django-Should I be here?

2013-11-03 Thread ZOB ARTCC
Thank you I will aim for the IRC Channel On Nov 3, 2013, at 12:43 PM, Daniele Procida wrote: > On Sun, Nov 3, 2013, zobcl...@gmail.com wrote: > >> I need a web application to do the following: >> >> 1. Authenticate a user (approx. 500 users) then show the user a list of >> registered devices w

Re: Django-Should I be here?

2013-11-03 Thread Daniele Procida
On Sun, Nov 3, 2013, zobcl...@gmail.com wrote: >I need a web application to do the following: > >1. Authenticate a user (approx. 500 users) then show the user a list of >registered devices within the servers dhcpd.conf file. > >2. Offer the user the option to delete an existing device. > >3. Of

Django-Should I be here?

2013-11-03 Thread zobcloud
I need a web application to do the following: 1. Authenticate a user (approx. 500 users) then show the user a list of registered devices within the servers dhcpd.conf file. 2. Offer the user the option to delete an existing device. 3. Offer the user the option to add a device - under th

Add a generic "getter" filter to the built-in library

2013-11-03 Thread Emanuele Bertoldi
I've opened a ticket (#21370) with a proposal for the *inclusion of a generic "getter" filter* in the built-in library. *Why?* Well, because at the moment Django's template system really lacks of support for retrieving data from existing context variables in all the cases in which the name of

Prefetch with custom queryset

2013-11-03 Thread Anssi Kääriäinen
Loic Bistuer has been working on a patch to allow using custom querysets with prefetch_related(). There was a lot of trying out different APIs. For example the kwargs based API discussed earlier on this mailing list was tried, but it turns out that due to prefetch ordering issues it wasn't actu