summaryrefslogtreecommitdiffstats
path: root/web/template/stats/updates_table.php
diff options
context:
space:
mode:
Diffstat (limited to 'web/template/stats/updates_table.php')
-rw-r--r--web/template/stats/updates_table.php46
1 files changed, 13 insertions, 33 deletions
diff --git a/web/template/stats/updates_table.php b/web/template/stats/updates_table.php
index 92c6e42..b942dbc 100644
--- a/web/template/stats/updates_table.php
+++ b/web/template/stats/updates_table.php
@@ -1,36 +1,16 @@
-<table class="boxSoft">
-<tr>
-<th colspan="2" class="boxSoftTitle" style="text-align: right">
-<span class="f3"><?php print __("Recent Updates") ?><span class="f5"></span></span>
-<a href="rss.php"><img src="images/feed-icon-14x14.png" alt="RSS Feed" /></a>
-</th>
-</tr>
+<h3><?php echo __("Recent Updates") ?></h3>
-<?php foreach ($newest_packages->getIterator() as $row): ?>
-<tr>
-<td class="boxSoft">
-<span class="f4"><span class="blue">
-<a href="packages.php?ID=<?php print intval($row["ID"]); ?>">
-<?php print htmlspecialchars($row["Name"]) . ' ' . htmlspecialchars($row["Version"]); ?>
-</a></span></span>
-</td>
-<td class="boxSoft">
-
-<?php
-$mod_int = intval($row["ModifiedTS"]);
-$sub_int = intval($row["SubmittedTS"]);
-
-if ($mod_int == $sub_int):
- $modstring = '<img src="images/new.gif" alt="New!" /> ' . gmdate("Y-m-d H:i", $sub_int);
-else:
- $modstring = gmdate("Y-m-d H:i", $mod_int);
-endif;
-?>
-
-<span class="f4"><?php print $modstring; ?></span>
-</td>
-</tr>
-
-<?php endforeach; ?>
+<a href="rss.php" title="Arch Package Updates RSS Feed" class="rss-icon"><img src="images/feed-icon-14x14.png" alt="RSS Feed" /></a>
+<table>
+ <?php foreach ($newest_packages->getIterator() as $row): ?>
+ <tr>
+ <td>
+ <a href="packages.php?ID=<?php print intval($row["ID"]); ?>"><?php print htmlspecialchars($row["Name"]) . ' ' . htmlspecialchars($row["Version"]); ?></a>
+ </td>
+ <td>
+ <span><?php print gmdate("Y-m-d H:i", intval($row["ModifiedTS"])); ?></span>
+ </td>
+ </tr>
+ <?php endforeach; ?>
</table>