Changeset 2704
- Timestamp:
- 10/25/07 06:32:29 (1 year ago)
- Files:
-
- clientsplugin/0.11/clients/client.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
clientsplugin/0.11/clients/client.py
r2703 r2704 9 9 from genshi.filters.transform import Transformer 10 10 11 #from util import *12 11 from clients import model 13 12 … … 26 25 if 'client' == field['name']: 27 26 field['type'] = 'select' 27 field['options'] = [] 28 28 for client in model.Client.select(self.env): 29 29 field['options'].append(client.name)
