Re: Application decoupling - project architecture question

2009-08-08 Thread kmike
I wrote a simple app that may be useful for avatar management: http://bitbucket.org/kmike/django-generic-images/wiki/Home It's similar to django-tagging in aspect that images can be attached to any model using generic relations and then fetched in a few sql queries. Avatar-uploading view example c

Re: Application decoupling - project architecture question

2009-08-08 Thread kmike
I wrote a simple app that may be useful for avatar management: http://bitbucket.org/kmike/django-generic-images/wiki/Home It's similar to django-tagging in aspect that images can be attached to any model using generic relations and then fetched in a few sql queries. Avatar-uploading view example

Re: Application decoupling - project architecture question

2009-08-07 Thread Andrin Riiet
Thanks for your replies, I read the book and indeed I found what I needed. For anyone who happens to read this and is wondering the same thing, here's how it goes: You extend the base form class (eg editProfileForm), add the avatar field to it and you use the new form class by passing it as par

Re: Application decoupling - project architecture question

2009-08-07 Thread grElement
There is a good tutorial on this in Practical Django Projects http://www.amazon.com/Practical-Django-Projects-Pratical/dp/1590599969 It goes a bit more into theory that I found helpful. On Aug 6, 8:07 am, Andrin Riiet wrote: > Hi, I'd like to shed some light on the "the right way" to make

Re: Application decoupling - project architecture question

2009-08-06 Thread Paulo Almeida
I'm far from being an expert, but maybe you can look at the django-tagging code for inspiration: http://code.google.com/p/django-tagging/ What they do is to provide a TagField in the tagging application, and then you can use that field in the form of the application using tags. You can probably d

Application decoupling - project architecture question

2009-08-06 Thread Andrin Riiet
Hi, I'd like to shed some light on the "the right way" to make applications in django by an example and a few questions. Let's say that I have a 'users' application (acting as "user profiles" on the built-in user authentication system) and I want to add an avatar image feature to it. I'd like to