|
From: Chris W. <la...@us...> - 2001-10-17 12:07:48
|
Update of /cvsroot/openinteract/OpenInteract/template
In directory usw-pr-cvs1:/tmp/cvs-serv22887
Modified Files:
show_label
Log Message:
put a pre- and post-label in
Index: show_label
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/template/show_label,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** show_label 2001/10/14 20:54:47 1.2
--- show_label 2001/10/17 12:07:43 1.3
***************
*** 1,4 ****
[%########################################
! show_label( label, is_required, required_display )
Display a label. If it's required, pass in a true value for
'is_required'. If it's required and you don't pass anything in
--- 1,4 ----
[%########################################
! show_label( label, is_required, required_display, pre_label, post_label )
Display a label. If it's required, pass in a true value for
'is_required'. If it's required and you don't pass anything in
***************
*** 12,14 ****
[%- req = required_display -%]
[% END %]
! <b>[% label %][% req %]</b>
\ No newline at end of file
--- 12,14 ----
[%- req = required_display -%]
[% END %]
! [% pre_label %]<b>[% label %][% req %][% post_label %]</b>
\ No newline at end of file
|