{% extends 'corpstat/base.html' %}
{% load i18n %}
{% load humanize %}
{% block member_data %}
|
{{ alliance_name }} |
Corporation Breakdown
Corporation |
Auth'd Mains |
Auth'd Alts |
Member Count |
Registered |
{% for corp, cs in corp_breakdown.items %}
{{corp}} |
{{ cs.mains }} |
{{ cs.alts }} |
{{ cs.total }} |
{% if cs.total %}{% widthratio cs.members cs.total 100 %}%{% endif %} |
{% endfor %}
{% endblock %}
{% block extra_javascript %}
{% include 'bundles/datatables-js.html' %}
{% endblock %}
{% block extra_css %}
{% include 'bundles/datatables-css.html' %}
{% endblock %}
{% block extra_script %}
$(document).ready(function() {
$('#table-corps').DataTable({
"order": [
[0, "desc"]
],
"pageLength": 100
});
});
{% endblock %}