Re: How to create this filter

2009-07-25 Thread Necmettin
On 25 Temmuz, 02:23, David wrote: > I used this syntax > > .extra(where=['%s >= %s - %s'], params=['criteria1_metric1', > 'criteria1_metric2',  'criteria1_value']) > > however I got error. You seem to be using the variables' names as strings: >>> criteria1_metric1 = 'somevalue' >>> criteria1_met

Re: Using block content tag

2009-06-09 Thread Necmettin Begiter
On Tue, Jun 9, 2009 at 09:29, vishy wrote: > Without using base.html, they rendered differently(in terms of > position) in browser. Which is normal, because base.html contains some positioning and CSS attached. --~--~-~--~~~---~--~~ You received this message becau

Re: What is available IN Django compared to other frameworks?

2009-06-08 Thread Necmettin Begiter
On Mon, Jun 8, 2009 at 16:39, Olav wrote: > > I am convinced that Django is a great framework, but I need to know > how much of the stuff I might need is available or can easily be > integrated? > > How much is available compared to Drupal, Joomla or DotNetNuke for > example? It is not even compa

Re: Multiple relationships between multiple tables

2008-10-13 Thread Necmettin Begiter
On Tue, Oct 14, 2008 at 07:48, Greg Ewing <[EMAIL PROTECTED]> wrote: > > Necmettin Begiter wrote: > >> At the admin page (or my template, whatever), when I select Person as >> the source table, SourceIdx / SourceName should be dynamically fetched >> from the Pers

Re: Multiple relationships between multiple tables

2008-10-13 Thread Necmettin Begiter
On Mon, Oct 13, 2008 at 16:15, Christian Joergensen <[EMAIL PROTECTED]> wrote: > > Necmettin Begiter wrote: > > Hello all, > > > > I have, say, 8 tables: Persons, works, phones, emails, addresses, > > eaddresses, articles, books. > > > > Each one

Multiple relationships between multiple tables

2008-10-13 Thread Necmettin Begiter
r tgt* fields. I have been looking around Django Docs and references for a while now, but couldn't come with a solution. IntegerField()s must actually be like ForeignKey(Person or Phone or Email or Address or eAddress) .. Any ideas on how to achieve this? Thanks in advance,