I2PSnark: Add icons for status and torrent columns.

This commit is contained in:
z3d
2010-09-19 14:48:44 +00:00
parent 511182f148
commit 82323cd806
4 changed files with 3 additions and 3 deletions

View File

@ -237,7 +237,7 @@ public class I2PSnarkServlet extends Default {
List snarks = getSortedSnarks(req); List snarks = getSortedSnarks(req);
String uri = req.getRequestURI(); String uri = req.getRequestURI();
out.write(TABLE_HEADER); out.write(TABLE_HEADER);
out.write(_("Status")); out.write(_("<img border=\"0\" src=\"/themes/console/snark/images/status.png\" title=\"Torrent Status\">Status"));
if (_manager.util().connected() && !snarks.isEmpty()) { if (_manager.util().connected() && !snarks.isEmpty()) {
out.write(" &raquo; <a href=\""); out.write(" &raquo; <a href=\"");
out.write(req.getRequestURI()); out.write(req.getRequestURI());
@ -251,7 +251,7 @@ public class I2PSnarkServlet extends Default {
out.write("</a><br>\n"); out.write("</a><br>\n");
} }
out.write("</th>\n<th align=\"left\">"); out.write("</th>\n<th align=\"left\">");
out.write(_("Torrent")); out.write(_("<img border=\"0\" src=\"/themes/console/snark/images/torrent.png\" title=\"Loaded Torrents\">Torrent"));
out.write("</th>\n<th align=\"center\">"); out.write("</th>\n<th align=\"center\">");
out.write(_("<img border=\"0\" src=\"/themes/console/snark/images/eta.png\" title=\"Estimated Download Time\">ETA")); out.write(_("<img border=\"0\" src=\"/themes/console/snark/images/eta.png\" title=\"Estimated Download Time\">ETA"));
out.write("</th>\n<th align=\"center\">"); out.write("</th>\n<th align=\"center\">");

Binary file not shown.

After

Width:  |  Height:  |  Size: 369 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 B

View File

@ -122,7 +122,7 @@ th {
th:first-child { th:first-child {
text-align: left; text-align: left;
padding-left: 10px; padding-left: 5px;
max-width: 120px; max-width: 120px;
} }