% template toolview1(String state) %>
<%
if (state == null) {
tools = getTools("live");
}
else {
tools = getTools(state)
}
%>
<% foreach (tool in tools) { %>
<% tool.name %>
<%
if (tool.createdAgeInDays < 45) {
' (New!) '
}
else if (tool.modifiedAgeInDays < 45) {
' (Updated!) '
}
%>
<% tool.homeURL %>
<% tool.comments %>
<% } %>