Re: Workflow engine

2007-10-17 Thread Sam Tran
On 10/17/07, Lic. José M. Rodriguez Bacallao <[EMAIL PROTECTED]> wrote: > hi folks, I need a workflow engine to use with a django web site I'm > implementing, does anyone know a good workflow engine for python (or > django)? > http://code.djangoproject.com/wiki/GoFlow

Re: Contacts application

2006-08-08 Thread Sam Tran
On 8/8/06, Rares Vernica <[EMAIL PROTECTED]> wrote: > > Hi, > > Do you know anybody trying a Contacts/Phonebook type of application in > Django? I am thinking about building one. > We are writing such an interface for internal use. The contact information includes: - work phone numbers - home

Re: Create generic views in Django 0.91

2006-06-16 Thread Sam Tran
On 6/16/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 6/16/06, Sam Tran <[EMAIL PROTECTED]> wrote: > > Wow! I didn't know it would be that simple! > > > > What about convenience functions, get_relatedobjectname()? > > Can 'relatedobjectname' be a

Re: Create generic views in Django 0.91

2006-06-16 Thread Sam Tran
On 6/16/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 6/16/06, Sam Tran <[EMAIL PROTECTED]> wrote: > > As for my initial question I apologize for the confusion, I didn't > > mean to use the generic views as described in the Django tutorials. I > > wa

Re: Create generic views in Django 0.91

2006-06-16 Thread Sam Tran
On 6/14/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 6/13/06, Sam Tran <[EMAIL PROTECTED]> wrote: > > Now we want to use the same model to create a contact tree for a given > > user: we determine who this user can view, e.g. personal phone > > num

Create generic views in Django 0.91

2006-06-13 Thread Sam Tran
Hi All, We are working on a service provisioning workflow interface using Django 0.91. We wrote some views that are being used to create/modify/delete manager/subordinates relationships with or without inheritance (Manager can also manage a subordinate's subordinates). We can also visualize the

Re: Render dictionary keys and values in a template?

2006-05-04 Thread Sam Tran
On 5/4/06, Eric Walstad <[EMAIL PROTECTED]> wrote: > > Is it possible to iterate over a dictionary in a django template, displaying > the dictionary values, without knowing the dictionary's keys beforehand? > > I want to simply list keys and values of a dictionary passed into a template, > but I

Re: Send POST data for unchecked checkboxes

2006-05-01 Thread Sam Tran
On 5/1/06, Luke Plant <[EMAIL PROTECTED]> wrote: > > On Monday 01 May 2006 20:03, Sam Tran wrote: > > > I am having the problem described in ticket 1045: > > http://code.djangoproject.com/ticket/1045 > > > > Was this problem fixed in Django 0.91? >

Re: Django admin css not fully working in MS IE6 ...

2006-04-27 Thread Sam Tran
On 4/27/06, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > On Thu, 2006-04-27 at 13:06 -0400, Sam Tran wrote: > > On 4/27/06, James Bennett <[EMAIL PROTECTED]> wrote: > > > > > > On 4/27/06, Sam Tran <[EMAIL PROTECTED]> wrote: > > >

Re: Django admin css not fully working in MS IE6 ...

2006-04-27 Thread Sam Tran
On 4/27/06, James Bennett <[EMAIL PROTECTED]> wrote: > > On 4/27/06, Sam Tran <[EMAIL PROTECTED]> wrote: > > I have been working with the Django admin using Firefox. > > Today I tried MS IE 6 and it looks like the css file used is not fully > > compatible

Django admin css not fully working in MS IE6 ...

2006-04-27 Thread Sam Tran
Hi All, I have been working with the Django admin using Firefox. Today I tried MS IE 6 and it looks like the css file used is not fully compatible with IE. For instance, the blue submit buttons are grey in IE. Is there a way to fix that? Thanks. Sam

Re: 'Automatic tabulation' in table

2006-04-26 Thread Sam Tran
On 4/26/06, Ian Holsman <[EMAIL PROTECTED]> wrote: > > Hi. > I did something similar to this a while back > I did it via a template tag. > you can read about it here: > http://feh.holsman.net/articles/2006/03/08/cross-tab-tag > Ian, I managed to get what I wanted with the method Malcom

Re: 'Automatic tabulation' in table

2006-04-24 Thread Sam Tran
On 4/24/06, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > Hi Sam, > > On Mon, 2006-04-24 at 15:52 -0400, Sam Tran wrote: > > Hi All, > > > > I have the following list of tuples: > > [(0, 'Jenna'), > > (1, 'Tom'), > > (1, 'Paul'

'Automatic tabulation' in table

2006-04-24 Thread Sam Tran
Hi All, I have the following list of tuples: [(0, 'Jenna'), (1, 'Tom'), (1, 'Paul'), (2, 'Cathy')] I want to create a table with as many row as the number of tuples (one row for each tuple). The first element of each tuple is the number of tabulations or empty cells to put in each row. The