Update of /cvsroot/phpwebsite-comm/modules/ads/templates/advertiser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4340/templates/advertiser
Modified Files:
add.tpl list.tpl
Added Files:
select.tpl
Log Message:
Now use demographics module to store business name for advertisers.
--- NEW FILE: select.tpl ---
{START_FORM}
<table class="form-table">
<!-- BEGIN advertiser-id -->
<tr><td>{ADVERTISER_ID_LABEL}</td><td>{ADVERTISER_ID}</td></tr>
<!-- END advertiser-id -->
<!-- BEGIN no-users-note -->
<tr><td>{NO_USERS_NOTE}</td></tr>
<!-- END no-users-note -->
</table>
{SUBMIT}
{END_FORM}
Index: add.tpl
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/ads/templates/advertiser/add.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** add.tpl 11 Feb 2007 23:38:29 -0000 1.2
--- add.tpl 16 Aug 2008 20:19:19 -0000 1.3
***************
*** 1,11 ****
{START_FORM}
! <table class="form-table" width="99%">
! <tr>
! <td>{USERNAME_LABEL}</td>
! <td>{USERNAME}</td>
! </tr>
<tr>
! <td>{BUSINESS_LABEL}</td>
! <td>{BUSINESS}</td>
</tr>
</table>
--- 1,7 ----
{START_FORM}
! <table class="form-table">
<tr>
! <td>{BUSINESS_NAME_LABEL}</td>
! <td>{BUSINESS_NAME}</td>
</tr>
</table>
Index: list.tpl
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/ads/templates/advertiser/list.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** list.tpl 22 Jun 2008 20:04:22 -0000 1.3
--- list.tpl 16 Aug 2008 20:19:19 -0000 1.4
***************
*** 1,5 ****
<table cellpadding="4" cellspacing="1" width="100%">
<tr>
! <th>{BUSINESS} {BUSINESS_SORT}</th>
<th>{DISPLAY_NAME} {DISPLAY_NAME_SORT}</th>
<th>{CREATED} {CREATED_SORT}</th>
--- 1,5 ----
<table cellpadding="4" cellspacing="1" width="100%">
<tr>
! <th>{BUSINESS_NAME} {BUSINESS_NAME_SORT}</th>
<th>{DISPLAY_NAME} {DISPLAY_NAME_SORT}</th>
<th>{CREATED} {CREATED_SORT}</th>
***************
*** 8,12 ****
<!-- BEGIN listrows -->
<tr{TOGGLE}>
! <td>{BUSINESS}</td>
<td>{DISPLAY_NAME}</td>
<td>{CREATED}</td>
--- 8,12 ----
<!-- BEGIN listrows -->
<tr{TOGGLE}>
! <td>{BUSINESS_NAME}</td>
<td>{DISPLAY_NAME}</td>
<td>{CREATED}</td>
|