Changeset 359


Ignore:
Timestamp:
06/30/08 11:29:17 (5 years ago)
Author:
aculapov
Message:
  • added cast to int
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/plugins/dashboardreportsplugin/dashboardreports/templates/ticketstatusquery.html

    r356 r359  
    2626                                <div class="dueDate"></div> 
    2727                                <li class="legendClosed">Closed:</li> 
    28                                 <li><a href="${value.closed_href}">${round(value.percentClosed)}%</a></li> 
     28                                <li><a href="${value.closed_href}">${int(round(value.percentClosed))}%</a></li> 
    2929                                <li class="legendOpen">Open:</li> 
    30                                 <li><a href="${value.active_href}">${round(value.percentActive)}%</a></li> 
     30                                <li><a href="${value.active_href}">${int(round(value.percentActive))}%</a></li> 
    3131                                    </py:if> 
    3232                             
Note: See TracChangeset for help on using the changeset viewer.