Re: Join .Net Community

2009-10-20 Thread Alexandru-Emil Lupu
No thanks On Tue, Oct 20, 2009 at 1:43 PM, nostradamnit wrote: > > No thanks > > On Oct 20, 12:30 pm, Shawon_ wrote: > > Join .Net Community > > > > This group represents the Microsoft .Net community. All .net > > programmers all around the world are welcome here. In this group > > you'll find th

Re: When did Paul join the Beatles?

2009-09-14 Thread Alexandru-Emil Lupu
lol... i have answered to late ... it seems that after all i have said the same thing as Tiago Regards On Mon, Sep 14, 2009 at 11:58 PM, Alexandru-Emil Lupu wrote: > i do not know if is database killing or not, but you could try some of > those > > Person.objects.select_related(

Re: When did Paul join the Beatles?

2009-09-14 Thread Alexandru-Emil Lupu
tion is it possible to write a model API statement that gets > > me this information, or would I have to add fields to the model? > > > > Thanks. > > > > On Sep 14, 9:46 am, Alexandru-Emil Lupu wrote: > > > > > > > > > basically you would have t

Re: When did Paul join the Beatles?

2009-09-14 Thread Alexandru-Emil Lupu
basically you would have to make a ManyToMany relation thru a class. In that class you make m,n,date field After that you just use a query to answer the question: Who (Paul)? joined to whom (Beatles), and after that will pop up the ManyToMany date field that will answer to question "when". I am pr

Re: ModelForm and ForeignKeys

2009-08-25 Thread Alexandru-Emil Lupu
an ideea: build a custom Model Form for Character, and after that define CharacterHome Model Form. class CharacterForm(forms.ModelForm): class Meta: model = Character exclude = ('some', 'fields','here', 'that', 'you', 'do', 'not', 'want', 'to', 'display' ) class CharacterHomeF

Re: how much python do i need to know to learn/use Django?

2009-08-14 Thread Alexandru-Emil Lupu
HI! personally i have started using Python / Django around 2 weeks ago. I do not know very much of it, but on a long term, my situation looks like: 3 years pascal Programming 5 years php Programming (1 with symfony framework) 2 weeks of Python / Django I cannot say that i have read any material, b

Re: admin problems with the docu

2009-08-13 Thread Alexandru-Emil Lupu
HI! the doc is updated for the 1.1 version .. try this urlpatterns = patterns('', (r'^admin/',admin.site.root), ) see more here: http://code.djangoproject.com/ticket/10050 Alecs On Thu, Aug 13, 2009 at 3:52 PM, quant wrote: > > hi > > i am pretty new to django and i started to check the d