Help me develop a Job Tracker (?)

2015-06-26 Thread Softeisbieger
Hi, maybe first, a few things about me: I have no experience in websites / django. I have a background in scientific computing and I especially enjoy using python. I did some GUI programming in .NET and SQL. So here is my project: I want to develop a 'Job Tracker' (approx. like an Issue Tracke

Re: Help me develop a Job Tracker (?)

2015-06-30 Thread Softeisbieger
I knew there had to be something like a workflow engine, thanks for the hint. I had a look at django-viewflow which looks pretty promising. Still, as far as I'm aware, some points are beyond the scope of this framework: - It would be nice if users could set up their own workflows. - I wou

Re: Help me develop a Job Tracker (?)

2015-07-02 Thread Softeisbieger
I am currently thinking about the database representation. I don't think I can solve this with django-viewflow: I need to be able to specify in advance a deadline and an assignee for each task of a work flow. Maybe consider the following: A work flow consists of a number of tasks. Each task is

Re: Help me develop a Job Tracker (?)

2015-07-03 Thread Softeisbieger
On Thursday, July 2, 2015 at 6:04:57 PM UTC+2, Javier Guerra wrote: > good luck! > > -- > Javier > Thanks for your input! Indeed, a linear pipeline should be sufficient. What do you think of my idea of organizing this in two database tables? One table models a work flow. A work flow points

Re: Help me develop a Job Tracker (?)

2015-07-06 Thread Softeisbieger
Let's see if I understand your proposal correctly: Workflow and Step act as template and are used to define the structure of different workflows. Project and Task 'implement' the template and are used as for actual work flows. So I formulate things that are fixed using the template and for the

Re: Help me develop a Job Tracker (?)

2015-07-13 Thread Softeisbieger
So I made some progress on this project. I set up the means to manage customers, which is pretty basic stuff: I usedCreateView, ListView and the like. Now I have a more complex situation where I am stuck: I am now working on creating projects (see models above). Here I have to implement the fo

Re: Help me develop a Job Tracker (?)

2015-07-14 Thread Softeisbieger
n older version of Django, it is part of the corp app > (https://docs.djangoproject.com/en/1.7/ref/contrib/formtools/form-wizard/). > > > -A > > On Mon, Jul 13, 2015 at 6:03 AM, Softeisbieger > wrote: > > So I made some progress on this project. I set up the means to manage &

Re: Help me develop a Job Tracker (?)

2015-07-14 Thread Softeisbieger
First: one cannot use get_cleaned_data_for_step(*step*) inside get_form_initial() (see: here

Re: Help me develop a Job Tracker (?)

2015-07-17 Thread Softeisbieger
Ok, so I set up the FormWizard, but it has some strange side effects. I implemented the process in three steps: 1. Choose a workflow 2. Specify information for the new Job (Adress, deadline, customer...) 3. Review deadlines and assigness for the different steps. Problems occur in the th

Re: Help me develop a Job Tracker (?)

2015-07-19 Thread Softeisbieger
I could fix part of my problem: The formtools formwizard doc states for the us of modelformsets: 'WizardView supports ModelForms and ModelFormSets