You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
823 B

<fieldset>
<legend title="<%= path_string %>"
><%= path[0]["name"] %> (<%= path.length %>)</legend>
<table>
<tr>
<td colspan="2"><%= zenny %>z</td>
</tr>
<% for(var i=0; i<all_components.length; i++) { %>
<tr>
<% if (all_components[i] in components) { %>
<td class="<%= delta[all_components[i]] < 0 ? 'plus' :
delta[all_components[i]] > 0 ? 'minus' :
'neutral' %>"
<%if (trade_names[i]) { %>
title="<%= trade_names[i] %>"
<% } %>
><a href="recommends.html?item=<%=
encodeURIComponent(all_components[i]) %>"
><%= all_components[i] %></a></td>
<td class="num"><%= components[all_components[i]] %></td>
<% } else { %>
<td>&nbsp;</td>
<td>&nbsp;</td>
<% } %>
</tr>
<% } %>
</table>
</fieldset>