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.
24 lines
628 B
24 lines
628 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' %>"
|
|
><%= all_components[i] %></td>
|
|
<td class="num"><%= components[all_components[i]] %></td>
|
|
<% } else { %>
|
|
<td> </td>
|
|
<td> </td>
|
|
<% } %>
|
|
</tr>
|
|
<% } %>
|
|
</table>
|
|
</fieldset>
|