[Cmfcollectorng-cvs] CMFCollectorNG/skins/collectorng collector_add_issue_form.pt,1.8,1.8.2.1
Status: Alpha
Brought to you by:
ajung
|
From: <aj...@us...> - 2003-04-01 07:10:52
|
Update of /cvsroot/cmfcollectorng/CMFCollectorNG/skins/collectorng
In directory sc8-pr-cvs1:/tmp/cvs-serv23337
Modified Files:
Tag: V-0_20-branch
collector_add_issue_form.pt
Log Message:
- custom1-3
- made main fieldset aware of getUsed()
Index: collector_add_issue_form.pt
===================================================================
RCS file: /cvsroot/cmfcollectorng/CMFCollectorNG/skins/collectorng/collector_add_issue_form.pt,v
retrieving revision 1.8
retrieving revision 1.8.2.1
diff -C2 -d -r1.8 -r1.8.2.1
*** collector_add_issue_form.pt 4 Feb 2003 17:59:12 -0000 1.8
--- collector_add_issue_form.pt 1 Apr 2003 07:10:49 -0000 1.8.2.1
***************
*** 30,37 ****
<table>
! <tr tal:repeat="field python:['title','description','classification','solution','importance','topic','subtopic','version_info','operating_system','security_related','progress']">
! <th tal:content="python: here.trans(getProp(field).getDescription())" />
! <td tal:content="structure python: here.render_property(getProp(field))" />
! </tr>
<tr>
--- 30,39 ----
<table>
! <metal:block tal:repeat="field python:['title','description','classification','solution','importance','topic','subtopic','version_info','operating_system','security_related','progress','custom1','custom2','custom3']">
! <tr tal:condition="python: getProp(field).getUsed()">
! <th tal:content="python: here.trans(getProp(field).getDescription())" />
! <td tal:content="structure python: here.render_property(getProp(field))" />
! </tr>
! </metal:block>
<tr>
|