[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Phpgroupware-cvs] property/templates/base budget.xsl
From: |
Sigurd Nes |
Subject: |
[Phpgroupware-cvs] property/templates/base budget.xsl |
Date: |
Tue, 09 May 2006 10:42:56 +0000 |
CVSROOT: /sources/phpgroupware
Module name: property
Branch:
Changes by: Sigurd Nes <address@hidden> 06/05/09 10:42:56
Modified files:
templates/base : budget.xsl
Log message:
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/phpgroupware/property/templates/base/budget.xsl.diff?tr1=1.13&tr2=1.14&r1=text&r2=text
Patches:
Index: property/templates/base/budget.xsl
diff -u property/templates/base/budget.xsl:1.13
property/templates/base/budget.xsl:1.14
--- property/templates/base/budget.xsl:1.13 Mon May 8 08:17:00 2006
+++ property/templates/base/budget.xsl Tue May 9 10:42:56 2006
@@ -831,8 +831,6 @@
<td class="th_text" align="right">
<xsl:value-of
select="sum_diff"/>
</td>
- <td>
- </td>
</tr>
</table>
</xsl:template>
@@ -865,16 +863,11 @@
<td class="th_text" width="10%" align="center">
<xsl:value-of select="lang_diff"/>
</td>
-
- <td class="th_text" width="10%" align="center">
- <xsl:value-of select="lang_details"/>
- </td>
</tr>
</xsl:template>
<xsl:template match="values_budget_obligations">
- <xsl:variable name="lang_details_text"><xsl:value-of
select="lang_details_text"/></xsl:variable>
<tr>
<xsl:attribute name="class">
<xsl:choose>
@@ -905,20 +898,18 @@
</td>
<td align = "right">
- <xsl:value-of select="obligation"/>
+ <xsl:variable
name="link_obligation"><xsl:value-of select="link_obligation"/></xsl:variable>
+ <a href="{$link_obligation}"
onMouseover="window.status='{obligation}';return true;"
onMouseout="window.status='';return true;"><xsl:value-of
select="obligation"/></a>
</td>
<td align = "right">
- <xsl:value-of select="actual_cost"/>
+ <xsl:variable
name="link_actual_cost"><xsl:value-of select="link_actual_cost"/></xsl:variable>
+ <a href="{$link_actual_cost}"
onMouseover="window.status='{actual_cost}';return true;"
onMouseout="window.status='';return true;"><xsl:value-of
select="actual_cost"/></a>
</td>
+
<td align = "right">
<xsl:value-of select="diff"/>
</td>
-
- <td align="center">
- <xsl:variable
name="link_details"><xsl:value-of select="link_details"/></xsl:variable>
- <a href="{$link_details}"
onMouseover="window.status='{$lang_details_text}';return true;"
onMouseout="window.status='';return true;"><xsl:value-of
select="text_details"/></a>
- </td>
</tr>
</xsl:template>