Hi,

I am developing a to-do task manager using Django 1.5 .
It will have tasks, tags, different forms of input etc.

I read on stackoverflow that creating separate apps with separate and
limited functionalities is a good practice. So, should I create different
apps for Task backend, Tag backend, and the frontend views ?

If yes, then I am thinking of having only the Task model in the Task app,
Tag model in Tag app, User profile model in it's own app, and import them
wherever necessary. Now, is this good also, or should I keep all my models
in one place ?
Regarding views, should I follow the same convention ( i.e. - only the
views related to tasks should be in the Task app, and the views relating to
tags should be in the Tag app ) ?

Thanks,
Parin

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to