Added workflow create, edit and delete views

This commit is contained in:
Roberto Rosario
2012-03-16 01:40:04 -04:00
parent 8c8befabdd
commit ffb5fc8286
5 changed files with 132 additions and 25 deletions

11
apps/workflows/forms.py Normal file
View File

@@ -0,0 +1,11 @@
from __future__ import absolute_import
from django import forms
from django.utils.translation import ugettext_lazy as _
from .models import Workflow
class WorkflowSetupForm(forms.ModelForm):
class Meta:
model = Workflow