Re: I am creating a project management app Each user has multiple projects and each project has a set of data When first logged in the user sees a list of all the projects only he created.i am able to

2019-12-15 Thread Dominick Del Ponte
I think you're looking for a detailView
<https://docs.djangoproject.com/en/3.0/ref/class-based-views/generic-display/#generic-display-views>
.

You'll likely need to pass  in your URL config to the
view in order to filter the boqmodel by the foreignKey.

Here's a video explaining detailViews.
<https://www.youtube.com/watch?v=TrJtYmfTWiA>

Dominick
delponte.d...@gmail.com



On Mon, Dec 16, 2019 at 4:07 PM Raviteja Reddy 
wrote:

> I am creating a project management app Each user has multiple projects and
> each project has a set of data When first logged in the user sees a list of
> all the projects only he created.i am able to do this. Then when clicked on
> the project the data related only to that project is to be shown. How do i
> do that in django? My projects model
>
> On Monday, December 16, 2019 at 1:32:45 AM UTC+5:30, Raviteja Reddy wrote:
>>
>> class projectsmodel(models.Model):
>> added_by = 
>> models.ForeignKey(settings.AUTH_USER_MODEL,null=True,blank=True,on_delete=models.SET_NULL)
>> projects=models.CharField(max_length=300)
>>
>> def save_model(self,request,obj,form,change):
>> obj.added_by=request.User
>> super().save_model(request,obj,form,change)
>> def __str__(self):
>> return self.projects
>>
>> My BOQ Model,it is the model that needs to be filtered based on project
>> it is redirected from
>>
>> class boqmodel(models.Model):
>> project_name = models.ForeignKey(projectsmodel, null=True, blank=True, 
>> on_delete=models.SET_NULL)
>> code = models.IntegerField()
>> building = models.ForeignKey(building, on_delete=models.SET_NULL, 
>> null=True)
>> level = models.ForeignKey(level, on_delete=models.SET_NULL, null=True)
>> activity = models.ForeignKey(activity, on_delete=models.SET_NULL, 
>> null=True)
>> subactivity = models.ForeignKey(sub_activity, on_delete=models.SET_NULL, 
>> null=True)
>> duration = models.IntegerField()
>> linkactivity = models.CharField(max_length=300, null=True, blank=True)
>> linktype = models.CharField(choices=choicestype, max_length=300, 
>> null=True, blank=True)
>> linkduration = models.IntegerField(default=0)
>> plannedstart = models.DateField(null=True, blank=True)
>> plannedfinish = models.DateField(null=True, blank=True)
>> actualstart = models.DateField(null=True, blank=True)
>> actualfinish = models.DateField(null=True, blank=True)
>>
>> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/696df99c-0795-44d5-b5d6-c7562e58c11c%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/696df99c-0795-44d5-b5d6-c7562e58c11c%40googlegroups.com?utm_medium=email_source=footer>
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CALLhV5T78NLfx8uTn9MJHf3jvTH7A%3Du%2BP4c-uTvOsf8nhSR1Cg%40mail.gmail.com.


Re: I am creating a project management app Each user has multiple projects and each project has a set of data When first logged in the user sees a list of all the projects only he created.i am able to

2019-12-15 Thread Raviteja Reddy
I am creating a project management app Each user has multiple projects and 
each project has a set of data When first logged in the user sees a list of 
all the projects only he created.i am able to do this. Then when clicked on 
the project the data related only to that project is to be shown. How do i 
do that in django? My projects model

On Monday, December 16, 2019 at 1:32:45 AM UTC+5:30, Raviteja Reddy wrote:
>
> class projectsmodel(models.Model):
> added_by = 
> models.ForeignKey(settings.AUTH_USER_MODEL,null=True,blank=True,on_delete=models.SET_NULL)
> projects=models.CharField(max_length=300)
>
> def save_model(self,request,obj,form,change):
> obj.added_by=request.User
> super().save_model(request,obj,form,change)
> def __str__(self):
> return self.projects
>
> My BOQ Model,it is the model that needs to be filtered based on project it 
> is redirected from
>
> class boqmodel(models.Model):
> project_name = models.ForeignKey(projectsmodel, null=True, blank=True, 
> on_delete=models.SET_NULL)
> code = models.IntegerField()
> building = models.ForeignKey(building, on_delete=models.SET_NULL, 
> null=True)
> level = models.ForeignKey(level, on_delete=models.SET_NULL, null=True)
> activity = models.ForeignKey(activity, on_delete=models.SET_NULL, 
> null=True)
> subactivity = models.ForeignKey(sub_activity, on_delete=models.SET_NULL, 
> null=True)
> duration = models.IntegerField()
> linkactivity = models.CharField(max_length=300, null=True, blank=True)
> linktype = models.CharField(choices=choicestype, max_length=300, 
> null=True, blank=True)
> linkduration = models.IntegerField(default=0)
> plannedstart = models.DateField(null=True, blank=True)
> plannedfinish = models.DateField(null=True, blank=True)
> actualstart = models.DateField(null=True, blank=True)
> actualfinish = models.DateField(null=True, blank=True)
>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/696df99c-0795-44d5-b5d6-c7562e58c11c%40googlegroups.com.


Re: I am creating a project management app Each user has multiple projects and each project has a set of data When first logged in the user sees a list of all the projects only he created.i am able to

2019-12-15 Thread Parth Joshi
Question is trimmed in the subject line. Can you paste it in description?




> On 15-Dec-2019, at 10:50 PM, Raviteja Reddy  wrote:
> 
> https://groups.google.com/d/msgid/django-users/0ff70f63-df88-430a-ba3c-4b0273395999%40googlegroups.com
>  
> 

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/69286006-520D-4B63-9379-96032359C4AE%40gmail.com.


I am creating a project management app Each user has multiple projects and each project has a set of data When first logged in the user sees a list of all the projects only he created.i am able to do

2019-12-15 Thread Raviteja Reddy


class projectsmodel(models.Model):
added_by = 
models.ForeignKey(settings.AUTH_USER_MODEL,null=True,blank=True,on_delete=models.SET_NULL)
projects=models.CharField(max_length=300)

def save_model(self,request,obj,form,change):
obj.added_by=request.User
super().save_model(request,obj,form,change)
def __str__(self):
return self.projects

My BOQ Model,it is the model that needs to be filtered based on project it 
is redirected from

class boqmodel(models.Model):
project_name = models.ForeignKey(projectsmodel, null=True, blank=True, 
on_delete=models.SET_NULL)
code = models.IntegerField()
building = models.ForeignKey(building, on_delete=models.SET_NULL, null=True)
level = models.ForeignKey(level, on_delete=models.SET_NULL, null=True)
activity = models.ForeignKey(activity, on_delete=models.SET_NULL, null=True)
subactivity = models.ForeignKey(sub_activity, on_delete=models.SET_NULL, 
null=True)
duration = models.IntegerField()
linkactivity = models.CharField(max_length=300, null=True, blank=True)
linktype = models.CharField(choices=choicestype, max_length=300, null=True, 
blank=True)
linkduration = models.IntegerField(default=0)
plannedstart = models.DateField(null=True, blank=True)
plannedfinish = models.DateField(null=True, blank=True)
actualstart = models.DateField(null=True, blank=True)
actualfinish = models.DateField(null=True, blank=True)

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0ff70f63-df88-430a-ba3c-4b0273395999%40googlegroups.com.


Re: What's the best way to implement project permissions in a project management app?

2010-10-05 Thread tracul

On Oct 5, 3:32 am, Stodge <sto...@gmail.com> wrote:
>  What's the best way to implement project permissions in a project
> management app? Should I just create the concept of membership and
> have a function is_member on the project model?

You could create a group for each project , and include members in
that group , then implement group based permissions .

-- 
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.



Re: What's the best way to implement project permissions in a project management app?

2010-10-05 Thread Stodge
Thanks. I just found django-authority. That might work.

http://packages.python.org/django-authority/

On Oct 5, 11:47 am, Godshall <michaelgodsh...@gmail.com> wrote:
> I would recommend looking at the projects app in Pinax for a good
> approach for 
> this:http://github.com/pinax/pinax/blob/master/pinax/apps/projects/models.py
>
> Basically, it uses a ManyToMany "members" field that you can add and
> remove users to/from the project.  That particular example uses an
> intermediary User model called ProjectMember to store extra info for
> the user, but that's optional.  If you don't use an intermediary User
> model, you will need to change the user_is_member method to something
> like:
>
> def user_is_member(self, user):
>     return user in self.member_queryset() # where
> self.member_queryset() returns self.members.all()
>
> This approach will give you per-project permissions like you
> requested.
>
> On Oct 5, 5:23 am, Stodge <sto...@gmail.com> wrote:
>
>
>
> > That looks like what I need. Thanks. Though I also need per-project
> > permissions; so user 'bob' can access tickets on Project A but not on
> > Project B. I'll have to re-read django-todo's code when I have more
> > time to see if they implement per group permissions.
>
> > On Oct 4, 9:03 pm, Mike Dewhirst <mi...@dewhirst.com.au> wrote:
>
> > > On 5/10/2010 11:32am, Stodge wrote:
>
> > > >   What's the best way to implement project permissions in a project
> > > > management app? Should I just create the concept of membership and
> > > > have a function is_member on the project model?
>
> > > Have a look at django-todo. A quick read the other day indicated to me
> > > that it has what you are looking for. I'm planning to look more closely
> > > but haven't had time yet.
>
> > > Mike

-- 
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.



Re: What's the best way to implement project permissions in a project management app?

2010-10-05 Thread Godshall
I would recommend looking at the projects app in Pinax for a good
approach for this: 
http://github.com/pinax/pinax/blob/master/pinax/apps/projects/models.py

Basically, it uses a ManyToMany "members" field that you can add and
remove users to/from the project.  That particular example uses an
intermediary User model called ProjectMember to store extra info for
the user, but that's optional.  If you don't use an intermediary User
model, you will need to change the user_is_member method to something
like:

def user_is_member(self, user):
return user in self.member_queryset() # where
self.member_queryset() returns self.members.all()

This approach will give you per-project permissions like you
requested.

On Oct 5, 5:23 am, Stodge <sto...@gmail.com> wrote:
> That looks like what I need. Thanks. Though I also need per-project
> permissions; so user 'bob' can access tickets on Project A but not on
> Project B. I'll have to re-read django-todo's code when I have more
> time to see if they implement per group permissions.
>
> On Oct 4, 9:03 pm, Mike Dewhirst <mi...@dewhirst.com.au> wrote:
>
>
>
> > On 5/10/2010 11:32am, Stodge wrote:
>
> > >   What's the best way to implement project permissions in a project
> > > management app? Should I just create the concept of membership and
> > > have a function is_member on the project model?
>
> > Have a look at django-todo. A quick read the other day indicated to me
> > that it has what you are looking for. I'm planning to look more closely
> > but haven't had time yet.
>
> > Mike

-- 
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.



Re: What's the best way to implement project permissions in a project management app?

2010-10-05 Thread Stodge
That looks like what I need. Thanks. Though I also need per-project
permissions; so user 'bob' can access tickets on Project A but not on
Project B. I'll have to re-read django-todo's code when I have more
time to see if they implement per group permissions.

On Oct 4, 9:03 pm, Mike Dewhirst <mi...@dewhirst.com.au> wrote:
> On 5/10/2010 11:32am, Stodge wrote:
>
> >   What's the best way to implement project permissions in a project
> > management app? Should I just create the concept of membership and
> > have a function is_member on the project model?
>
> Have a look at django-todo. A quick read the other day indicated to me
> that it has what you are looking for. I'm planning to look more closely
> but haven't had time yet.
>
> Mike

-- 
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.



Re: What's the best way to implement project permissions in a project management app?

2010-10-04 Thread Mike Dewhirst

On 5/10/2010 11:32am, Stodge wrote:

  What's the best way to implement project permissions in a project
management app? Should I just create the concept of membership and
have a function is_member on the project model?



Have a look at django-todo. A quick read the other day indicated to me 
that it has what you are looking for. I'm planning to look more closely 
but haven't had time yet.


Mike

--
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.



What's the best way to implement project permissions in a project management app?

2010-10-04 Thread Stodge
 What's the best way to implement project permissions in a project
management app? Should I just create the concept of membership and
have a function is_member on the project model?

-- 
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.



Announcing django-projector - django project management app with mercurial repositories support build-in

2010-09-05 Thread lukaszb
It took more time than I expected but there it is: project management
with repositories support.

So? What's in? Well, there is repository content browser, support for
mercurial push/clone over http, simple issue tracker (which have to be
revisited probably), members & teams, permissions etc. There are a lot
of features we haven't implemented yet or even stated (like code
review). Moreover, currently application doesn't support other scm's
but there is some work on the way to support git (we use
http://bitbucket.org/marcinkuzminski/vcs but both Martin and I haven't
worked on it much during the summer - Martin focused on his
http://bitbucket.org/marcinkuzminski/hg-app/src and I was working on
projector... and hey, it's summer!).

Website was launched today and is available at http://www.django-projector.org.
Documentation (http://packages.python.org/django-projector/) is still
rather basic and there are no buildout scripts yet so it may not be
straightforward how to deploy application.

Codes are available at http://bitbucket.org/lukaszb/django-projector/
and I plan to move them out at the https://forge.django-projector.org
but it depends on the feedback - I'm aware that it would be much
easier to collaborate at bitbucket right now.

I've also created mailing list here: 
http://groups.google.com/group/django-projector.

Oh, yep, there is a demo application. It was deployed at other
location a week ago but I've moved it to https://forge.django-projector.org
now. Anyone willing to check django-projector in action - just visit
the site, sing up and try it!

I'm aware of many issues - some of them are already stated at
http://bitbucket.org/lukaszb/django-projector/issues and some of them
not (like there is no option to allow anonymous/not members of public
projects to file a bug or Team conversion requires specific user
profile model). But according to publish-early-policy I've decided to
announce it anyway.

Motivation: github/bb are great services and it was something strange
to me that there are no open sourced similar projects (sure, there are
*plenty* of issue trackers with repository browsers, and only a few
rather still not deployable approaches to provide full repository
support). I've searched for application that integrates tightly with
scm - ended up with projector which provides bridge between django and
mercurial build-in server. I'm still unsure about git here, though -
and would gladly hear for any suggestions!

If you have any questions, please contact me at
lukaszbalcer...@gmail.com .

Regards,
Lukasz

-- 
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.



Re: project management app

2010-08-18 Thread piz...@gmail.com

Hi,

I've seen this mail and I'm also developing a project management  
application on my own (at least until I have the first beta) but if  
you want to take a look you can get it from my personal server, it's  
a bazaar repository:


bzr://halcyon.zapto.org/supervise

If the server does not answer try again after some minutes.

Cheers,
Oscar Carballal

El 18/08/2010, a las 18:28, tiemonster escribió:


Beta testing is an interesting option. Perhaps I can host the latest
subversion somewhere and let you try it out. It may take a couple
weeks, though.

On Aug 17, 4:39 pm, chris hendrix <tchend...@gmail.com> wrote:
yeah i couldn't get it installed either.  I'm wondering if the  
project
was abandoned or something.  I don't have time to contribute  
anything in

regard to programming at the moment due to starting up a web design
firm.  However, i'd love to help you flesh out ideas or be a beta  
tester

for you... keep me posted!

chris

On 08/17/2010 04:35 PM, tiemonster wrote:




I was unable to get the code working. I'm developing a project
management application for Django if you're interested in
contributing.



On Aug 16, 2:27 pm, Bobby Roberts<tchend...@gmail.com>  wrote:



hi all.



I've foundhttp://code.google.com/p/django-project-management/out
there as a project management app but have yet to install it and  
see

what all it can do.  Has anyone installed this and do you have an
opinion on it?  Is there anything else out there for project
management?


--
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.




--
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.



Re: project management app

2010-08-18 Thread tiemonster
Beta testing is an interesting option. Perhaps I can host the latest
subversion somewhere and let you try it out. It may take a couple
weeks, though.

On Aug 17, 4:39 pm, chris hendrix <tchend...@gmail.com> wrote:
> yeah i couldn't get it installed either.  I'm wondering if the project
> was abandoned or something.  I don't have time to contribute anything in
> regard to programming at the moment due to starting up a web design
> firm.  However, i'd love to help you flesh out ideas or be a beta tester
> for you... keep me posted!
>
> chris
>
> On 08/17/2010 04:35 PM, tiemonster wrote:
>
>
>
> > I was unable to get the code working. I'm developing a project
> > management application for Django if you're interested in
> > contributing.
>
> > On Aug 16, 2:27 pm, Bobby Roberts<tchend...@gmail.com>  wrote:
>
> >> hi all.
>
> >> I've foundhttp://code.google.com/p/django-project-management/out
> >> there as a project management app but have yet to install it and see
> >> what all it can do.  Has anyone installed this and do you have an
> >> opinion on it?  Is there anything else out there for project
> >> management?

-- 
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.



Re: project management app

2010-08-17 Thread chris hendrix
yeah i couldn't get it installed either.  I'm wondering if the project 
was abandoned or something.  I don't have time to contribute anything in 
regard to programming at the moment due to starting up a web design 
firm.  However, i'd love to help you flesh out ideas or be a beta tester 
for you... keep me posted!



chris

On 08/17/2010 04:35 PM, tiemonster wrote:

I was unable to get the code working. I'm developing a project
management application for Django if you're interested in
contributing.

On Aug 16, 2:27 pm, Bobby Roberts<tchend...@gmail.com>  wrote:
   

hi all.

I've foundhttp://code.google.com/p/django-project-management/out
there as a project management app but have yet to install it and see
what all it can do.  Has anyone installed this and do you have an
opinion on it?  Is there anything else out there for project
management?
 
   


--
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.



Re: project management app

2010-08-17 Thread tiemonster
I was unable to get the code working. I'm developing a project
management application for Django if you're interested in
contributing.

On Aug 16, 2:27 pm, Bobby Roberts <tchend...@gmail.com> wrote:
> hi all.
>
> I've foundhttp://code.google.com/p/django-project-management/out
> there as a project management app but have yet to install it and see
> what all it can do.  Has anyone installed this and do you have an
> opinion on it?  Is there anything else out there for project
> management?

-- 
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.



project management app suggestion

2010-08-17 Thread Bobby Roberts
hi all... there have been posts in the past about project management
apps but all of the threads seem dated by quite a bit.  I am wondering
if there is any project management (ie like basecamp) app out there
that can be easily installed in the django /admin.  Please let me know
if you know of anything.

-- 
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.



project management app

2010-08-16 Thread Bobby Roberts
hi all.

I've found http://code.google.com/p/django-project-management/ out
there as a project management app but have yet to install it and see
what all it can do.  Has anyone installed this and do you have an
opinion on it?  Is there anything else out there for project
management?

-- 
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.



Re: Django Project Management App

2009-12-30 Thread Gour
On Fri, 11 Sep 2009 08:26:02 +0200
>> "Petar" == Petar Radosevic  wrote:

Hello Petar,

Petar> The coincidence is that we just created a invoice/quote admin  
Petar> application for Django. I'm still writing a blog post about it.
Petar> But you can see it here:
Petar> 
Petar> http://bitbucket.org/breadandpepper/django-brookie/
Petar> 

I'm looking for some adequate invoicing django-app - something like
SimpleInvoices (http://simpleinvoices.org/) - only with support for
Postgresql and (possibly) Django.

(One option I consider is Tryton (http://www.tryton.org/) - fork of
OpenERP.

I've also tried Minibooks from Caktus, but it looks that both (brookie
& minibooks) are tied to your specific consulting needs as web
developers while our need would be (to track patients in small
homeopathic/counselling clinic and) creating invoices for the clients.

Do you plan to work further on brookie and is there any plan to
abstract the code a bit in order to make it more useful as reusable
app?


Sincerely,
Gour
-- 

Gour  | Hlapicina, Croatia  | GPG key: F96FF5F6



signature.asc
Description: PGP signature


Re: Django Project Management App

2009-09-13 Thread Greg Brown

Cheers for the feedback folks. Just to be clear, my app doesn't handle
code repositories or bug tracking at all - it's very much a one-user
system at the moment. I actually just run it on my Macbook in a
terminal (applescripted on startup). It's somewhat similar to basecamp
I guess, albeit much simpler - per-project todo lists, time tracking,
and invoice generation are pretty much all it can do for now.

Anyway, once I've found some time to clean it up, I'll unleash it on
the world and see what happens...

Cheers,
Greg



2009/9/11 Thomas Guettler <h...@tbz-pariv.de>:
>
> Greg schrieb:
>> Hi all,
>>
>> Since I started with django a year or so ago, I've been gradually
>> building a very simple project management app for myself - it started
>> as a project to learn the language but has evolved into a very useful
>> tool, handling all my timetracking, task management and invoicing.
>>
>> I'm wondering if it would be worth open sourcing it?
>
> Of course, do it.
>
>> Right now it's
>> very much set up for me and me only, but it wouldn't take too much
>> effort to make it a portable app that others could use. I've looked
>> for django project management projects to use and/or contribute to,
>> but there doesn't seem to be any out there.
>>
>
> There is one. I searched for an alternative to trac some time ago. Basie
> can handle several SVN-Repositories (Trac does not) and uses django.
>
> But I had to time to try it:
>
>   http://basieproject.org/
>
>  Thomas
>
>
> --
> Thomas Guettler, http://www.thomas-guettler.de/
> E-Mail: guettli (*) thomas-guettler + de
>
> >
>



-- 
http://gregbrown.co.nz/

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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
-~--~~~~--~~--~--~---



Re: Django Project Management App

2009-09-11 Thread Thomas Guettler

Greg schrieb:
> Hi all,
> 
> Since I started with django a year or so ago, I've been gradually
> building a very simple project management app for myself - it started
> as a project to learn the language but has evolved into a very useful
> tool, handling all my timetracking, task management and invoicing.
> 
> I'm wondering if it would be worth open sourcing it?

Of course, do it.

> Right now it's
> very much set up for me and me only, but it wouldn't take too much
> effort to make it a portable app that others could use. I've looked
> for django project management projects to use and/or contribute to,
> but there doesn't seem to be any out there.
> 

There is one. I searched for an alternative to trac some time ago. Basie
can handle several SVN-Repositories (Trac does not) and uses django.

But I had to time to try it:

   http://basieproject.org/

 Thomas


-- 
Thomas Guettler, http://www.thomas-guettler.de/
E-Mail: guettli (*) thomas-guettler + de

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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
-~--~~~~--~~--~--~---



Re: Django Project Management App

2009-09-11 Thread Petar Radosevic

Hi Greg,

> I'm wondering if it would be worth open sourcing it?

I think it's always worthwhile to open-source software when there aren't
any other solutions in that area.

The coincidence is that we just created a invoice/quote admin  
application
for Django. I'm still writing a blog post about it. But you can see it  
here:

http://bitbucket.org/breadandpepper/django-brookie/

Maybe we could learn from your application because we just build this  
one in
a 2 day sprint.

Petar

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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
-~--~~~~--~~--~--~---



Re: Django Project Management App

2009-09-10 Thread Mike Dewhirst

Greg wrote:
> Hi all,
> 
> Since I started with django a year or so ago, I've been gradually
> building a very simple project management app for myself - it started
> as a project to learn the language but has evolved into a very useful
> tool, handling all my timetracking, task management and invoicing.
> 
> I'm wondering if it would be worth open sourcing it? 

+1

I think it would be well worthwhile.

I just downloaded Satchmo to see how a Django app should be structured; 
not because I want a shopping site. Satchmo is a very sophisticated 
piece of Django/Python obviously comprising many man-years of work.

If you open source your app it could serve the dual purpose of showing 
newbies (like me) a working app of only a year or so's sophistication 
(much easier to get one's head around) plus a project management tool.

Go for it :)

Mike


Right now it's
> very much set up for me and me only, but it wouldn't take too much
> effort to make it a portable app that others could use. I've looked
> for django project management projects to use and/or contribute to,
> but there doesn't seem to be any out there.
> 
> Any thoughts?
> 
> Greg
> > 
> 
> 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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
-~--~~~~--~~--~--~---



Django Project Management App

2009-09-10 Thread Greg

Hi all,

Since I started with django a year or so ago, I've been gradually
building a very simple project management app for myself - it started
as a project to learn the language but has evolved into a very useful
tool, handling all my timetracking, task management and invoicing.

I'm wondering if it would be worth open sourcing it? Right now it's
very much set up for me and me only, but it wouldn't take too much
effort to make it a portable app that others could use. I've looked
for django project management projects to use and/or contribute to,
but there doesn't seem to be any out there.

Any thoughts?

Greg
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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
-~--~~~~--~~--~--~---



Re: open source project management app that uses django?

2008-12-04 Thread Margie

Ok - forget it - I figured it out! I found the django pages on how to
serve static files and that showed me what I need to know and it looks
great now.

On Dec 4, 12:54 pm, Margie <[EMAIL PROTECTED]> wrote:
> Ok - this is very useful!  It is just great to see a "real" app that
> does something similar to what I want.  The code looks very nice and
> seems simple to understand.  I have downloaded it and integrated into
> my little play django application, but I have one problem.  In the
> README it says:
>
> 6. Inside your MEDIA_ROOT folder, create a new folder called
> 'helpdesk' and
>    copy the contents of helpdesk/htdocs/ into it. Alternatively,
> create a
>    symlink:
>     ln -s /path/to/helpdesk/htdocs /path/to/media/helpdesk
>
>    This application assumes all helpdesk media will be accessible at
>    http://MEDIA_PATH/helpdesk/
>
> I did the ln, but I don't understand how to make the contantes of
> media/helpdes accessible athttp://MEDIA_PATH/helpdesk/
>
> What do I do to make them "accessible"?
>
> Margie
>
> On Dec 3, 11:27 pm, "Hanny Wibisono" <[EMAIL PROTECTED]> wrote:
>
>
>
> >http://www.jutdahelpdesk.com/
>
> > -Original Message-
> > From: django-users@googlegroups.com [mailto:[EMAIL PROTECTED]
>
> > On Behalf Of Margie
>
> > Hi everyone,
>
> > I would like to create a django project managment web app to be used
> > internally in my company.  I am a software developer, but have little
> > experience with web apps other than my recent work going through the
> > sams django tutorial book.
>
> > I'm wondering if anyone knows of any open source/free django web app
> > that I might be able to use to get started on this project.  Let me
> > describe the usage model to give you an idea of what I'm aiming for.
>
> > At a very high level, the usage model for this web app is that a
> > "manager" assigns tasks to "employees" on a weekly basis. Associated
> > with each task is a set of measurements that must be performed by the
> > employee as he/she does the task.  The measurements vary based on the
> > task, and somemes the measurement is reported with a comment string,
> > sometimes a number, or sometimes a check mark in one of 'n' radio
> > boxes.   As the employees complete the tasks, they fill in the
> > measurements.  At the end of the week, the manager can look at each
> > task and review the resulting measurements, and based on that data,
> > decide the next weeks'  tasks.
>
> > Unlike a project mangament tool like MS Project, which helps you
> > schedule and gannt chart the schedule, this is really a tool to for
> > enhancing project communication.  It is intended to allow the manager
> > to easily communicate tasks to the employees, get the results back,
> > and then make decisions about what the next set of tasks sould be.
> > All without having to spend a lot of time emailing and talking to
> > people.  In the environement where it will be used, the manager is
> > getting results back from maybe 100 different employees, each of which
> > have a few tasks to do.  The data is not complex, but there is just
> > too much of it to manage without a tool.  Currently folks are using
> > wiki and excel, but in my opninion this is not really automated
> > enough.
>
> > My thought is that a django web client could provide a very simple and
> > easy to use interface, and could also be extended to get all sorts of
> > nice long term trend information.  For exmaple, t would be interesting
> > to know if a project being run at site A executes task 'foo' more
> > frequently or for longer periods of time than a project being run at
> > site B.  As data is across multiple similar projects, it seems that it
> > could be mined for lots of interesting info to help improve the
> > productivity of future projects.
>
> > Ok - so hopefully you get the idea.  Now for my questions:
>
> > * Does anyone know of existing web apps (django or otherwise) like
> > that already exists?
>
> > * Does this sound like something that would be good to do in Django?
>
> > * Does anyone know of any free/open source software (django based)
> > that I could use as a starting point?  Not being a web developer, I
> > know that if I do this from scratch, I will probably not do a great
> > job.  No doubt there are a ton of intracacies to window layout, the
> > structure of the models, the html templates, and other things I
> > haven't even thought of.  So I'm thinking it would be great to
> > bootstrap from some existing code, even if it doesn't do quite what I
> > want.  I would be happy to contribute my own work back to the open
> > source community.
>
> > Thanks for any ideas!
>
> > Margie- Hide quoted text -
>
> > - Show quoted text -- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, 

Re: open source project management app that uses django?

2008-12-04 Thread Margie

Ok - this is very useful!  It is just great to see a "real" app that
does something similar to what I want.  The code looks very nice and
seems simple to understand.  I have downloaded it and integrated into
my little play django application, but I have one problem.  In the
README it says:


6. Inside your MEDIA_ROOT folder, create a new folder called
'helpdesk' and
   copy the contents of helpdesk/htdocs/ into it. Alternatively,
create a
   symlink:
ln -s /path/to/helpdesk/htdocs /path/to/media/helpdesk

   This application assumes all helpdesk media will be accessible at
   http://MEDIA_PATH/helpdesk/

I did the ln, but I don't understand how to make the contantes of
media/helpdes accessible at http://MEDIA_PATH/helpdesk/

What do I do to make them "accessible"?

Margie


On Dec 3, 11:27 pm, "Hanny Wibisono" <[EMAIL PROTECTED]> wrote:
> http://www.jutdahelpdesk.com/
>
>
>
> -Original Message-
> From: django-users@googlegroups.com [mailto:[EMAIL PROTECTED]
>
> On Behalf Of Margie
>
> Hi everyone,
>
> I would like to create a django project managment web app to be used
> internally in my company.  I am a software developer, but have little
> experience with web apps other than my recent work going through the
> sams django tutorial book.
>
> I'm wondering if anyone knows of any open source/free django web app
> that I might be able to use to get started on this project.  Let me
> describe the usage model to give you an idea of what I'm aiming for.
>
> At a very high level, the usage model for this web app is that a
> "manager" assigns tasks to "employees" on a weekly basis. Associated
> with each task is a set of measurements that must be performed by the
> employee as he/she does the task.  The measurements vary based on the
> task, and somemes the measurement is reported with a comment string,
> sometimes a number, or sometimes a check mark in one of 'n' radio
> boxes.   As the employees complete the tasks, they fill in the
> measurements.  At the end of the week, the manager can look at each
> task and review the resulting measurements, and based on that data,
> decide the next weeks'  tasks.
>
> Unlike a project mangament tool like MS Project, which helps you
> schedule and gannt chart the schedule, this is really a tool to for
> enhancing project communication.  It is intended to allow the manager
> to easily communicate tasks to the employees, get the results back,
> and then make decisions about what the next set of tasks sould be.
> All without having to spend a lot of time emailing and talking to
> people.  In the environement where it will be used, the manager is
> getting results back from maybe 100 different employees, each of which
> have a few tasks to do.  The data is not complex, but there is just
> too much of it to manage without a tool.  Currently folks are using
> wiki and excel, but in my opninion this is not really automated
> enough.
>
> My thought is that a django web client could provide a very simple and
> easy to use interface, and could also be extended to get all sorts of
> nice long term trend information.  For exmaple, t would be interesting
> to know if a project being run at site A executes task 'foo' more
> frequently or for longer periods of time than a project being run at
> site B.  As data is across multiple similar projects, it seems that it
> could be mined for lots of interesting info to help improve the
> productivity of future projects.
>
> Ok - so hopefully you get the idea.  Now for my questions:
>
> * Does anyone know of existing web apps (django or otherwise) like
> that already exists?
>
> * Does this sound like something that would be good to do in Django?
>
> * Does anyone know of any free/open source software (django based)
> that I could use as a starting point?  Not being a web developer, I
> know that if I do this from scratch, I will probably not do a great
> job.  No doubt there are a ton of intracacies to window layout, the
> structure of the models, the html templates, and other things I
> haven't even thought of.  So I'm thinking it would be great to
> bootstrap from some existing code, even if it doesn't do quite what I
> want.  I would be happy to contribute my own work back to the open
> source community.
>
> Thanks for any ideas!
>
> Margie- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: open source project management app that uses django?

2008-12-04 Thread maeck

You can use the standard css from the admin for your both the admin
pages as the custom reports.
Just load the admin css and follow the same html.

Works for me.

Maeck

On Dec 4, 12:04 am, Margie <[EMAIL PROTECTED]> wrote:
> Thanks - yes, that is pretty much the approach I am planning to take,
> but I just figured I'd see if there was anything interesting out there
> that would give me a spiffy look and feel for the reporting pages.
> One thing that I find confusing is how to come up with a color
> scheme.  I know that seems sort of low priority, but I swear the first
> thing people notice is if your colors are "ugly" or very basic looking
> (ie, black and white).
>
> Anyway, I will proceed with putting the models together as that is
> clearly the meat of the project at this poitn.  I just learned about
> CRUD tonight, and I can see how that is very nice.
>
> Thanks,
> Margie
>
> On Dec 3, 5:59 pm, maeck <[EMAIL PROTECTED]> wrote:
>
> > Margie,
>
> > If you can think up a decent model, you might be able to setup the
> > core of the project management application in the Django contrib.admin
> > module.
> > Development will go fast as long as you can stay with standard CRUD
> > pages.
> > The admin model will also give you the user security hooks necessary
> > for the manager and employees.
>
> > As soon as you nee a need for reporting pages or ways to do things a
> > little more complex than the admin can give you, you can build custom
> > pages for those. But I would think you could have 80% of your app
> > running only by setting up the database models and nice admin pages.
>
> > Maeck
>
> > On Dec 3, 3:41 pm, Margie <[EMAIL PROTECTED]> wrote:
>
> > > Hi everyone,
>
> > > I would like to create a django project managment web app to be used
> > > internally in my company.  I am a software developer, but have little
> > > experience with web apps other than my recent work going through the
> > > sams django tutorial book.
>
> > > I'm wondering if anyone knows of any open source/free django web app
> > > that I might be able to use to get started on this project.  Let me
> > > describe the usage model to give you an idea of what I'm aiming for.
>
> > > At a very high level, the usage model for this web app is that a
> > > "manager" assigns tasks to "employees" on a weekly basis. Associated
> > > with each task is a set of measurements that must be performed by the
> > > employee as he/she does the task.  The measurements vary based on the
> > > task, and somemes the measurement is reported with a comment string,
> > > sometimes a number, or sometimes a check mark in one of 'n' radio
> > > boxes.   As the employees complete the tasks, they fill in the
> > > measurements.  At the end of the week, the manager can look at each
> > > task and review the resulting measurements, and based on that data,
> > > decide the next weeks'  tasks.
>
> > > Unlike a project mangament tool like MS Project, which helps you
> > > schedule and gannt chart the schedule, this is really a tool to for
> > > enhancing project communication.  It is intended to allow the manager
> > > to easily communicate tasks to the employees, get the results back,
> > > and then make decisions about what the next set of tasks sould be.
> > > All without having to spend a lot of time emailing and talking to
> > > people.  In the environement where it will be used, the manager is
> > > getting results back from maybe 100 different employees, each of which
> > > have a few tasks to do.  The data is not complex, but there is just
> > > too much of it to manage without a tool.  Currently folks are using
> > > wiki and excel, but in my opninion this is not really automated
> > > enough.
>
> > > My thought is that a django web client could provide a very simple and
> > > easy to use interface, and could also be extended to get all sorts of
> > > nice long term trend information.  For exmaple, t would be interesting
> > > to know if a project being run at site A executes task 'foo' more
> > > frequently or for longer periods of time than a project being run at
> > > site B.  As data is across multiple similar projects, it seems that it
> > > could be mined for lots of interesting info to help improve the
> > > productivity of future projects.
>
> > > Ok - so hopefully you get the idea.  Now for my questions:
>
> > > * Does anyone know of existing web apps (django or otherwise) like
> > > that already exists?
>
> > > * Does this sound like something that would be good to do in Django?
>
> > > * Does anyone know of any free/open source software (django based)
> > > that I could use as a starting point?  Not being a web developer, I
> > > know that if I do this from scratch, I will probably not do a great
> > > job.  No doubt there are a ton of intracacies to window layout, the
> > > structure of the models, the html templates, and other things I
> > > haven't even thought of.  So I'm thinking it would be great to
> > > bootstrap from some existing code, 

Re: open source project management app that uses django?

2008-12-04 Thread Kenneth Gonsalves

On Thursday 04 Dec 2008 4:22:15 pm Horst Gutmann wrote:
> Grrr again linebreaks
> 

this worked:
svn checkout http://jutda-helpdesk.googlecode.com/svn/trunk/ jutda


-- 
regards
KG
http://lawgon.livejournal.com

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



Re: open source project management app that uses django?

2008-12-04 Thread Horst Gutmann

Grrr again linebreaks


On Thu, Dec 4, 2008 at 11:51 AM, Horst Gutmann <[EMAIL PROTECTED]> wrote:
> Looks like you got hit by some evil linebreaks :-)
>
> svn checkout http://jutda-helpdesk.googlecode.com/svn/trunk/
> jutda-helpdesk-read-only
>
> On Thu, Dec 4, 2008 at 11:40 AM, Kenneth Gonsalves
> <[EMAIL PROTECTED]> wrote:
>> On Thursday 04 Dec 2008 12:57:14 pm Hanny Wibisono wrote:
>>> http://www.jutdahelpdesk.com/
>>
>> I get this error:
>> [EMAIL PROTECTED] ~]$ svn checkout
>> http://jutda-helpdesk.googlecode.com/svn/trunk/jutda-helpdesk-read-only jutda
>> svn:
>> URL 'http://jutda-helpdesk.googlecode.com/svn/trunk/jutda-helpdesk-read-only'
>> doesn't exist
>>
>> --
>> regards
>> KG
>> http://lawgon.livejournal.com
>>
>> >>
>>
>

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



Re: open source project management app that uses django?

2008-12-04 Thread Horst Gutmann

Looks like you got hit by some evil linebreaks :-)

svn checkout http://jutda-helpdesk.googlecode.com/svn/trunk/
jutda-helpdesk-read-only

On Thu, Dec 4, 2008 at 11:40 AM, Kenneth Gonsalves
<[EMAIL PROTECTED]> wrote:
> On Thursday 04 Dec 2008 12:57:14 pm Hanny Wibisono wrote:
>> http://www.jutdahelpdesk.com/
>
> I get this error:
> [EMAIL PROTECTED] ~]$ svn checkout
> http://jutda-helpdesk.googlecode.com/svn/trunk/jutda-helpdesk-read-only jutda
> svn:
> URL 'http://jutda-helpdesk.googlecode.com/svn/trunk/jutda-helpdesk-read-only'
> doesn't exist
>
> --
> regards
> KG
> http://lawgon.livejournal.com
>
> >
>

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



Re: open source project management app that uses django?

2008-12-04 Thread Kenneth Gonsalves

On Thursday 04 Dec 2008 12:57:14 pm Hanny Wibisono wrote:
> http://www.jutdahelpdesk.com/

I get this error:
[EMAIL PROTECTED] ~]$ svn checkout 
http://jutda-helpdesk.googlecode.com/svn/trunk/jutda-helpdesk-read-only jutda
svn: 
URL 'http://jutda-helpdesk.googlecode.com/svn/trunk/jutda-helpdesk-read-only' 
doesn't exist

-- 
regards
KG
http://lawgon.livejournal.com

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



RE: open source project management app that uses django?

2008-12-04 Thread Hanny Wibisono

http://www.jutdahelpdesk.com/


-Original Message-
From: django-users@googlegroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of Margie

Hi everyone,

I would like to create a django project managment web app to be used
internally in my company.  I am a software developer, but have little
experience with web apps other than my recent work going through the
sams django tutorial book.

I'm wondering if anyone knows of any open source/free django web app
that I might be able to use to get started on this project.  Let me
describe the usage model to give you an idea of what I'm aiming for.

At a very high level, the usage model for this web app is that a
"manager" assigns tasks to "employees" on a weekly basis. Associated
with each task is a set of measurements that must be performed by the
employee as he/she does the task.  The measurements vary based on the
task, and somemes the measurement is reported with a comment string,
sometimes a number, or sometimes a check mark in one of 'n' radio
boxes.   As the employees complete the tasks, they fill in the
measurements.  At the end of the week, the manager can look at each
task and review the resulting measurements, and based on that data,
decide the next weeks'  tasks.

Unlike a project mangament tool like MS Project, which helps you
schedule and gannt chart the schedule, this is really a tool to for
enhancing project communication.  It is intended to allow the manager
to easily communicate tasks to the employees, get the results back,
and then make decisions about what the next set of tasks sould be.
All without having to spend a lot of time emailing and talking to
people.  In the environement where it will be used, the manager is
getting results back from maybe 100 different employees, each of which
have a few tasks to do.  The data is not complex, but there is just
too much of it to manage without a tool.  Currently folks are using
wiki and excel, but in my opninion this is not really automated
enough.

My thought is that a django web client could provide a very simple and
easy to use interface, and could also be extended to get all sorts of
nice long term trend information.  For exmaple, t would be interesting
to know if a project being run at site A executes task 'foo' more
frequently or for longer periods of time than a project being run at
site B.  As data is across multiple similar projects, it seems that it
could be mined for lots of interesting info to help improve the
productivity of future projects.

Ok - so hopefully you get the idea.  Now for my questions:

* Does anyone know of existing web apps (django or otherwise) like
that already exists?

* Does this sound like something that would be good to do in Django?

* Does anyone know of any free/open source software (django based)
that I could use as a starting point?  Not being a web developer, I
know that if I do this from scratch, I will probably not do a great
job.  No doubt there are a ton of intracacies to window layout, the
structure of the models, the html templates, and other things I
haven't even thought of.  So I'm thinking it would be great to
bootstrap from some existing code, even if it doesn't do quite what I
want.  I would be happy to contribute my own work back to the open
source community.

Thanks for any ideas!

Margie


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



Re: open source project management app that uses django?

2008-12-04 Thread Margie

Thanks - yes, that is pretty much the approach I am planning to take,
but I just figured I'd see if there was anything interesting out there
that would give me a spiffy look and feel for the reporting pages.
One thing that I find confusing is how to come up with a color
scheme.  I know that seems sort of low priority, but I swear the first
thing people notice is if your colors are "ugly" or very basic looking
(ie, black and white).

Anyway, I will proceed with putting the models together as that is
clearly the meat of the project at this poitn.  I just learned about
CRUD tonight, and I can see how that is very nice.

Thanks,
Margie

On Dec 3, 5:59 pm, maeck <[EMAIL PROTECTED]> wrote:
> Margie,
>
> If you can think up a decent model, you might be able to setup the
> core of the project management application in the Django contrib.admin
> module.
> Development will go fast as long as you can stay with standard CRUD
> pages.
> The admin model will also give you the user security hooks necessary
> for the manager and employees.
>
> As soon as you nee a need for reporting pages or ways to do things a
> little more complex than the admin can give you, you can build custom
> pages for those. But I would think you could have 80% of your app
> running only by setting up the database models and nice admin pages.
>
> Maeck
>
> On Dec 3, 3:41 pm, Margie <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi everyone,
>
> > I would like to create a django project managment web app to be used
> > internally in my company.  I am a software developer, but have little
> > experience with web apps other than my recent work going through the
> > sams django tutorial book.
>
> > I'm wondering if anyone knows of any open source/free django web app
> > that I might be able to use to get started on this project.  Let me
> > describe the usage model to give you an idea of what I'm aiming for.
>
> > At a very high level, the usage model for this web app is that a
> > "manager" assigns tasks to "employees" on a weekly basis. Associated
> > with each task is a set of measurements that must be performed by the
> > employee as he/she does the task.  The measurements vary based on the
> > task, and somemes the measurement is reported with a comment string,
> > sometimes a number, or sometimes a check mark in one of 'n' radio
> > boxes.   As the employees complete the tasks, they fill in the
> > measurements.  At the end of the week, the manager can look at each
> > task and review the resulting measurements, and based on that data,
> > decide the next weeks'  tasks.
>
> > Unlike a project mangament tool like MS Project, which helps you
> > schedule and gannt chart the schedule, this is really a tool to for
> > enhancing project communication.  It is intended to allow the manager
> > to easily communicate tasks to the employees, get the results back,
> > and then make decisions about what the next set of tasks sould be.
> > All without having to spend a lot of time emailing and talking to
> > people.  In the environement where it will be used, the manager is
> > getting results back from maybe 100 different employees, each of which
> > have a few tasks to do.  The data is not complex, but there is just
> > too much of it to manage without a tool.  Currently folks are using
> > wiki and excel, but in my opninion this is not really automated
> > enough.
>
> > My thought is that a django web client could provide a very simple and
> > easy to use interface, and could also be extended to get all sorts of
> > nice long term trend information.  For exmaple, t would be interesting
> > to know if a project being run at site A executes task 'foo' more
> > frequently or for longer periods of time than a project being run at
> > site B.  As data is across multiple similar projects, it seems that it
> > could be mined for lots of interesting info to help improve the
> > productivity of future projects.
>
> > Ok - so hopefully you get the idea.  Now for my questions:
>
> > * Does anyone know of existing web apps (django or otherwise) like
> > that already exists?
>
> > * Does this sound like something that would be good to do in Django?
>
> > * Does anyone know of any free/open source software (django based)
> > that I could use as a starting point?  Not being a web developer, I
> > know that if I do this from scratch, I will probably not do a great
> > job.  No doubt there are a ton of intracacies to window layout, the
> > structure of the models, the html templates, and other things I
> > haven't even thought of.  So I'm thinking it would be great to
> > bootstrap from some existing code, even if it doesn't do quite what I
> > want.  I would be happy to contribute my own work back to the open
> > source community.
>
> > Thanks for any ideas!
>
> > Margie- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to 

Re: open source project management app that uses django?

2008-12-03 Thread maeck

Margie,

If you can think up a decent model, you might be able to setup the
core of the project management application in the Django contrib.admin
module.
Development will go fast as long as you can stay with standard CRUD
pages.
The admin model will also give you the user security hooks necessary
for the manager and employees.

As soon as you nee a need for reporting pages or ways to do things a
little more complex than the admin can give you, you can build custom
pages for those. But I would think you could have 80% of your app
running only by setting up the database models and nice admin pages.

Maeck



On Dec 3, 3:41 pm, Margie <[EMAIL PROTECTED]> wrote:
> Hi everyone,
>
> I would like to create a django project managment web app to be used
> internally in my company.  I am a software developer, but have little
> experience with web apps other than my recent work going through the
> sams django tutorial book.
>
> I'm wondering if anyone knows of any open source/free django web app
> that I might be able to use to get started on this project.  Let me
> describe the usage model to give you an idea of what I'm aiming for.
>
> At a very high level, the usage model for this web app is that a
> "manager" assigns tasks to "employees" on a weekly basis. Associated
> with each task is a set of measurements that must be performed by the
> employee as he/she does the task.  The measurements vary based on the
> task, and somemes the measurement is reported with a comment string,
> sometimes a number, or sometimes a check mark in one of 'n' radio
> boxes.   As the employees complete the tasks, they fill in the
> measurements.  At the end of the week, the manager can look at each
> task and review the resulting measurements, and based on that data,
> decide the next weeks'  tasks.
>
> Unlike a project mangament tool like MS Project, which helps you
> schedule and gannt chart the schedule, this is really a tool to for
> enhancing project communication.  It is intended to allow the manager
> to easily communicate tasks to the employees, get the results back,
> and then make decisions about what the next set of tasks sould be.
> All without having to spend a lot of time emailing and talking to
> people.  In the environement where it will be used, the manager is
> getting results back from maybe 100 different employees, each of which
> have a few tasks to do.  The data is not complex, but there is just
> too much of it to manage without a tool.  Currently folks are using
> wiki and excel, but in my opninion this is not really automated
> enough.
>
> My thought is that a django web client could provide a very simple and
> easy to use interface, and could also be extended to get all sorts of
> nice long term trend information.  For exmaple, t would be interesting
> to know if a project being run at site A executes task 'foo' more
> frequently or for longer periods of time than a project being run at
> site B.  As data is across multiple similar projects, it seems that it
> could be mined for lots of interesting info to help improve the
> productivity of future projects.
>
> Ok - so hopefully you get the idea.  Now for my questions:
>
> * Does anyone know of existing web apps (django or otherwise) like
> that already exists?
>
> * Does this sound like something that would be good to do in Django?
>
> * Does anyone know of any free/open source software (django based)
> that I could use as a starting point?  Not being a web developer, I
> know that if I do this from scratch, I will probably not do a great
> job.  No doubt there are a ton of intracacies to window layout, the
> structure of the models, the html templates, and other things I
> haven't even thought of.  So I'm thinking it would be great to
> bootstrap from some existing code, even if it doesn't do quite what I
> want.  I would be happy to contribute my own work back to the open
> source community.
>
> Thanks for any ideas!
>
> Margie
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



open source project management app that uses django?

2008-12-03 Thread Margie

Hi everyone,

I would like to create a django project managment web app to be used
internally in my company.  I am a software developer, but have little
experience with web apps other than my recent work going through the
sams django tutorial book.

I'm wondering if anyone knows of any open source/free django web app
that I might be able to use to get started on this project.  Let me
describe the usage model to give you an idea of what I'm aiming for.

At a very high level, the usage model for this web app is that a
"manager" assigns tasks to "employees" on a weekly basis. Associated
with each task is a set of measurements that must be performed by the
employee as he/she does the task.  The measurements vary based on the
task, and somemes the measurement is reported with a comment string,
sometimes a number, or sometimes a check mark in one of 'n' radio
boxes.   As the employees complete the tasks, they fill in the
measurements.  At the end of the week, the manager can look at each
task and review the resulting measurements, and based on that data,
decide the next weeks'  tasks.

Unlike a project mangament tool like MS Project, which helps you
schedule and gannt chart the schedule, this is really a tool to for
enhancing project communication.  It is intended to allow the manager
to easily communicate tasks to the employees, get the results back,
and then make decisions about what the next set of tasks sould be.
All without having to spend a lot of time emailing and talking to
people.  In the environement where it will be used, the manager is
getting results back from maybe 100 different employees, each of which
have a few tasks to do.  The data is not complex, but there is just
too much of it to manage without a tool.  Currently folks are using
wiki and excel, but in my opninion this is not really automated
enough.

My thought is that a django web client could provide a very simple and
easy to use interface, and could also be extended to get all sorts of
nice long term trend information.  For exmaple, t would be interesting
to know if a project being run at site A executes task 'foo' more
frequently or for longer periods of time than a project being run at
site B.  As data is across multiple similar projects, it seems that it
could be mined for lots of interesting info to help improve the
productivity of future projects.

Ok - so hopefully you get the idea.  Now for my questions:

* Does anyone know of existing web apps (django or otherwise) like
that already exists?

* Does this sound like something that would be good to do in Django?

* Does anyone know of any free/open source software (django based)
that I could use as a starting point?  Not being a web developer, I
know that if I do this from scratch, I will probably not do a great
job.  No doubt there are a ton of intracacies to window layout, the
structure of the models, the html templates, and other things I
haven't even thought of.  So I'm thinking it would be great to
bootstrap from some existing code, even if it doesn't do quite what I
want.  I would be happy to contribute my own work back to the open
source community.

Thanks for any ideas!

Margie


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



Project Management App

2008-07-07 Thread Chris Hoeppner

Hey there!

I wonder if anyone knows if there's an app resembling ActiveCollab (or  
Basecamp, for illustration's sake) that I could plug into a django  
project.

If not, would it be a worthy project with an audience?

Chris

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