Skip to content

Commit

Permalink
Added NW to military overview
Browse files Browse the repository at this point in the history
  • Loading branch information
sbeaumont committed Nov 5, 2023
1 parent 82b151d commit 7b2933d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion templates/military.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ <h5>Military {% if versus_op != 0 %}(VERSUS {{ versus_op }} OP){% endif %}</h5>
<th>Paid</th>
<th>OP</th>
<th>DP</th>
<th>NW</th>
</tr>
</thead>
{% for dom in doms %}
Expand Down Expand Up @@ -67,6 +68,7 @@ <h5>Military {% if versus_op != 0 %}(VERSUS {{ versus_op }} OP){% endif %}</h5>
<td>{{ dom.military.paid_until }}</td>
<td>{{ dom.military.op }}</td>
<td>{{ dom.military.dp }}</td>
<td>{{ dom.networth }}</td>
</tr>
{% endfor %}
</table><br>
Expand All @@ -78,7 +80,7 @@ <h5>Military {% if versus_op != 0 %}(VERSUS {{ versus_op }} OP){% endif %}</h5>
'paging': false,
'order': [[6, 'desc']],
'columnDefs': [
{ "type": "num", "targets": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]}
{ "type": "num", "targets": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]}
]
});
} );
Expand Down

0 comments on commit 7b2933d

Please sign in to comment.