92 lines
2.7 KiB
HTML
92 lines
2.7 KiB
HTML
<h1 class="title">Information for link group {{ linkgroup.name }}</h1>
|
|
|
|
<div class="columns">
|
|
<div class="column">
|
|
<h1 class="title is-4">Platforms</h1>
|
|
{% include 'partials/platform-list.html' with object_list=platforms type=type %}
|
|
<h1 class="title is-4">Aggregators</h1>
|
|
{% include 'partials/aggregator-list.html' with object_list=aggregators type=type %}
|
|
|
|
<h1 class="title is-4">Requisitions</h1>
|
|
<table class="table is-fullwidth is-hoverable">
|
|
<thead>
|
|
<th>id</th>
|
|
<th>aggregator</th>
|
|
<th>payees</th>
|
|
<th>throughput</th>
|
|
</thead>
|
|
{% for item in requisitions %}
|
|
<tr>
|
|
<td>{{ item.id|truncatechars:20 }}</td>
|
|
<td>{{ item.aggregator.name }}</td>
|
|
<td>
|
|
{% for payee in item.payees.all %}
|
|
{{ payee.name }}{% if not forloop.last %}, {% endif %}
|
|
{% endfor %}
|
|
</td>
|
|
<td>{{ item.throughput }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
<div class="column">
|
|
<h1 class="title is-4">Platform payees</h1>
|
|
<table class="table is-fullwidth is-hoverable">
|
|
<thead>
|
|
<th>name</th>
|
|
<th>address</th>
|
|
</thead>
|
|
{% for item in linkgroup.payees.platform %}
|
|
<tr>
|
|
<td>{{ item.name }}</td>
|
|
<td>{{ item.address }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<h1 class="title is-4">Requisition payees</h1>
|
|
<table class="table is-fullwidth is-hoverable">
|
|
<thead>
|
|
<th>name</th>
|
|
<th>address</th>
|
|
</thead>
|
|
{% for item in linkgroup.payees.requisition %}
|
|
<tr>
|
|
<td>{{ item.name }}</td>
|
|
<td>{{ item.address }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<h1 class="title is-4">Split</h1>
|
|
<table class="table is-fullwidth is-hoverable">
|
|
<thead>
|
|
<th>attribute</th>
|
|
<th>%</th>
|
|
<th>graphic</th>
|
|
|
|
</thead>
|
|
<tr>
|
|
<td>platform</td>
|
|
<td>{{ linkgroup.platform_owner_cut_percentage }}</td>
|
|
<td>
|
|
<progress class="progress" value="{{ linkgroup.platform_owner_cut_percentage }}" max="100"></progress>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>requisition</td>
|
|
<td>{{ linkgroup.requisition_owner_cut_percentage }}</td>
|
|
<td>
|
|
<progress class="progress" value="{{ linkgroup.requisition_owner_cut_percentage }}" max="100"></progress>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>operator</td>
|
|
<td>{{ linkgroup.operator_cut_percentage }}</td>
|
|
<td>
|
|
<progress class="progress" value="{{ linkgroup.operator_cut_percentage }}" max="100"></progress>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
{% include 'partials/linkgroup-info-sim.html' %} |