Hi all,

I'm new to Django and Python. I have a small project I want to tackle
and was after some advice on where to start.

Simply the project will be a site to manage 'Projects' and their
associated 'Tasks', however each project and their related tasks
should be private (authenticated users can only see the tasks for the
projects they have access to).

Use Case:
Prerequisites:
 - Three projects, "Project A", "Project B" and "Project C" exist.
 - Three groups, "Project A", "Project B" and "Project C" exist.
 - One user, "User A" exists and is assigned to the group "Project A"
and "Project C"

Scenario 1:
 1. 'User A' logs in to site, clicks "my projects", 'Project A' and
'Project C' is listed.
 2. 'User A' clicks "new task" and new task form is loaded.
 3. 'User A' adds a task "Title", selects the "Project" combo and
selects 'Project A' from a choice of 'Project A' and 'Project C'.
'User A' clicks 'Submit'.
 4. 'User A' selects "show all tasks", tasks for 'Project A' and
'Project C' only are shown.

What have I done so far:
Basically I have done the easy stuff. I have a Project model and a
Task model. At the moment any new task can be created against any
project (no security in place).

Where should I start? I've looked around for a app which does this but
haven't had any luck. Perhaps i'm not using the correct keywords to
find the right answer?

Any help of advice you could provide will be very helpful, and much
appreciated.

Cheers,

Jamie

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

Reply via email to