Re: Overall Design Question

2013-02-11 Thread Gabriel Abdalla
Hi Alex, I'm still new to Django and Python, but I have experience in other frameworks. Here is my opinion regarding your three points: *(1) An app for each role.* I think the approach of having one app for each role is the worst thing to do. In this case, you would have too much duplicated code

Re: Overall Design Question

2013-02-11 Thread Bill Freeman
On Mon, Feb 11, 2013 at 7:13 AM, Ajinkya Gadewar < ajinkya.gade...@ishareitall.com> wrote: > Hi Alex, > > I already have a education system developed. We run a software company in > India. Let me know if you need more details on it. > > Regards, > Ajinkya Gadewar > > Sent from my iPhone > > On

Re: Overall Design Question

2013-02-11 Thread Ajinkya Gadewar
Hi Alex, I already have a education system developed. We run a software company in India. Let me know if you need more details on it. Regards, Ajinkya Gadewar Sent from my iPhone On 11-Feb-2013, at 2:17 PM, "alexandre...@gmail.com" wrote: > Hi > I'm starting a big

Overall Design Question

2013-02-11 Thread alexandre...@gmail.com
Hi I'm starting a big app on Django for Shool management, to replace a Win32 app. I've roles like teachers, students, admin stuff, ... that have diferent access. How should it be developded? 1- an app for each role? 2- some logic in templates? 3- any other what is the correct aporach to get