[pLog-svn] r670 - plog/trunk/templates/admin

oscar at devel.plogworld.net oscar at devel.plogworld.net
Tue Jan 4 17:38:33 GMT 2005


Author: oscar
Date: 2005-01-04 17:38:33 +0000 (Tue, 04 Jan 2005)
New Revision: 670

Modified:
   plog/trunk/templates/admin/poststats.template
   plog/trunk/templates/admin/statistics.template
Log:
I forgot to display the number of hits in the "post statistics" and "site statistics" lists!

Modified: plog/trunk/templates/admin/poststats.template
===================================================================
--- plog/trunk/templates/admin/poststats.template	2005-01-04 17:32:07 UTC (rev 669)
+++ plog/trunk/templates/admin/poststats.template	2005-01-04 17:38:33 UTC (rev 670)
@@ -14,8 +14,9 @@
                 <thead>
                     <tr>
                         <th style="width:10px;"><input class="checkbox" type="checkbox" class="check" name="all" id="all" value="1" onclick="toggleAllChecks('postStats');" /></th>
-                        <th style="width:535px;">{$locale->tr("referrer")}</th>
-                        <th style="width:135px;">{$locale->tr("date")}</th>
+                        <th style="width:500px;">{$locale->tr("referrer")}</th>
+						<th style="width:70px;">{$locale->tr("hits")}</th>						
+                        <th style="width:100px;">{$locale->tr("date")}</th>
                         <th style="width:95px;">{$locale->tr("actions")}</th>
                     </tr>
                 </thead>
@@ -29,6 +30,9 @@
                             <a href="{$referrer->getUrl()}">{$referrer->getUrl()|truncate:55:"..."}</a>
                         </td>
 						<td>
+						   {$referrer->getHits()}
+						</td>						
+						<td>
                             {assign var=date value=$referrer->getDateObject()}
                             {$locale->formatDate($date,"%d/%m/%Y %H:%M")}
                         </td>                        

Modified: plog/trunk/templates/admin/statistics.template
===================================================================
--- plog/trunk/templates/admin/statistics.template	2005-01-04 17:32:07 UTC (rev 669)
+++ plog/trunk/templates/admin/statistics.template	2005-01-04 17:38:33 UTC (rev 670)
@@ -12,8 +12,9 @@
                 <thead>
                     <tr>
                         <th style="width:10px;"><input class="checkbox" type="checkbox" class="check" name="all" id="all" value="1" onclick="toggleAllChecks('postStats');" /></th>
-                        <th style="width:535px;">{$locale->tr("referrer")}</th>                        
-                        <th style="width:135px;">{$locale->tr("date")}</th>
+                        <th style="width:500px;">{$locale->tr("referrer")}</th>                        
+						<th style="width:70px;">{$locale->tr("hits")}</th>
+                        <th style="width:100px;">{$locale->tr("date")}</th>
                         <th style="width:95px;">{$locale->tr("actions")}</th>
                     </tr>
                 </thead>
@@ -27,6 +28,9 @@
                             <a href="{$referrer->getUrl()}">{$referrer->getUrl()|truncate:55:"..."}</a>
                         </td>
 						<td>
+						   {$referrer->getHits()}
+						</td>
+						<td>
                             {assign var=date value=$referrer->getDateObject()}
                             {$locale->formatDate($date,"%d/%m/%Y %H:%M")}
                         </td>                        




More information about the pLog-svn mailing list