Extending a app with other app

2012-07-20 Thread Nicolas Ardison
ook crear how ? Anyone knows some open source project that implement this to see the code? or some doc/tutorial/blog entry to read? Thanks guys =) Nicolas Ardison -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion

How to create a app inside a app

2012-07-20 Thread Nicolas Ardison
Hello, i was reading the Django documentation, and i have the following trouble that i'm not sure if django can solve it. I have a application called "userArea" and i want to extend that app with more app isolated from the "main" apps. [DjangoProject] [APP1] [subAPP1] [subAPP2] [APP2] Co

Editing a form values

2012-08-16 Thread Nicolas Ardison
uot;name"); lastname = forms.CharField(label=" lastname"); def Loadname(self,n_name) self.name.value = n_name; # I can not figure out how to do this. ##END OF CODE Thanks in advice for your help people! Nicolas Ardison -- You received this message because you are subscribed to the Goog

Re: Editing a form values

2012-08-16 Thread Nicolas Ardison
,n_name) self.fields[' name '].initial = ' n_name '; ##END OF CODE El jueves, 16 de agosto de 2012 15:37:10 UTC-3, Nicolas Ardison escribió: > > Hello guys, i can not find how to the following things. > I have a form that it's not related with any model, and i wa