I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Verified Commit 106b1a69 authored by zzz's avatar zzz
Browse files

SusiDNS: Hide last-modified on details page if empty

parent 6cab545c
No related branches found
No related tags found
No related merge requests found
...@@ -133,11 +133,18 @@ ...@@ -133,11 +133,18 @@
<td><%=intl._t("Added Date")%></td> <td><%=intl._t("Added Date")%></td>
<td><%=addr.getAdded()%></td> <td><%=addr.getAdded()%></td>
</tr> </tr>
<%
String lastmod = addr.getModded();
if (lastmod.length() > 0) {
%>
<tr class="list${book.trClass}"> <tr class="list${book.trClass}">
<td><%=intl._t("Last Modified")%></td> <td><%=intl._t("Last Modified")%></td>
<td><%=addr.getModded()%></td> <td><%=lastmod%></td>
</tr> </tr>
<% } // showNotes %> <%
} // lastmod
} // showNotes
%>
<tr class="list${book.trClass}"> <tr class="list${book.trClass}">
<td><%=intl._t("Destination")%></td> <td><%=intl._t("Destination")%></td>
<td class="destinations"><div class="destaddress" tabindex="0"><%=addr.getDestination()%></div></td> <td class="destinations"><div class="destaddress" tabindex="0"><%=addr.getDestination()%></div></td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment