I have this odd problem last update column background in the closed ticket section. It is not picking up the alt2 class I applied, yet the rest of that row did strange enough.
This is the ticketlist template
Code:
<if condition="$op=='mytickets' OR $op=='publictickets' OR $op=='openedtickets' ">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="7">$headertitle - Open</td>
</tr>
<tr>
<td class="thead" align="left">$vbphrase[ticketnumber]</td>
<td class="thead" align="center">$vbphrase[title]</td>
<td class="thead" align="center">$vbphrase[priority]</td>
<td class="thead" align="center">$vbphrase[posted_by]</td>
<td class="thead" align="center">$vbphrase[when_logged]</td>
<td class="thead" align="center">$vbphrase[last_update]</td>
</tr>
</thead>
<tbody class="alt2">
$tickets1
</tbody>
</table>
<div style="height: 6px;"></div>
</if>
<if condition="$op=='mytickets' OR $op=='publictickets' OR $op=='closedtickets'">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="7">$headertitle - Closed</td>
</tr>
<tr>
<td class="thead" align="left">$vbphrase[ticketnumber]</td>
<td class="thead" align="center">$vbphrase[title]</td>
<td class="thead" align="center">$vbphrase[priority]</td>
<td class="thead" align="center">$vbphrase[posted_by]</td>
<td class="thead" align="center">$vbphrase[when_logged]</td>
<td class="thead" align="center">$vbphrase[last_update]</td>
</tr>
</thead>
<tbody class="alt2">
$tickets2
</tbody>
</table>
</if>
<if condition="$pagenav">
<table align="$stylevar[right]">
<td align="$stylevar[right]">$pagenav</td>
</table></if>
ticketlist2
Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="7">$headertitle</td>
</tr>
<tr>
<td class="thead" align="left" width="10%">$vbphrase[ticketnumber]</td>
<td class="thead" align="center">$vbphrase[title]</td>
<td class="thead" align="center">$vbphrase[priority]</td>
<td class="thead" align="center">$vbphrase[posted_by]</td>
<td class="thead" align="center">$vbphrase[when_logged]</td>
<td class="thead" align="center">$vbphrase[last_update]</td>
</tr>
</thead>
<tbody class="alt2">
$tickets
</tbody>
</table>
<div style="height: 6px;"></div>
<if condition="$pagenav">
<table align="$stylevar[right]">
<td align="$stylevar[right]">$pagenav</td>
</table></if>