Information for link group {{ linkgroup.name }}

Platforms

{% include 'partials/platform-list.html' with object_list=platforms type=type %}

Aggregators

{% include 'partials/aggregator-list.html' with object_list=aggregators type=type %}

Requisitions

{% for item in requisitions %} {% endfor %}
id aggregator payees
{{ item.id|truncatechars:20 }} {{ item.aggregator.name }} {% for payee in item.payees.all %} {{ payee.name }}{% if not forloop.last %}, {% endif %} {% endfor %}

Platform payees

{% for item in linkgroup.payees.platform %} {% endfor %}
name address
{{ item.name }} {{ item.address }}

Requisition payees

{% for item in linkgroup.payees.requisition %} {% endfor %}
name address
{{ item.name }} {{ item.address }}

Split

attribute % graphic
platform {{ linkgroup.platform_owner_cut_percentage }}
requisition {{ linkgroup.requisition_owner_cut_percentage }}
operator {{ linkgroup.operator_cut_percentage }}

Simulation for $1000

Assuming equal throughput for platforms and requisitions. Note that this is just a simulation, equal throughput is highly unlikely.

    {% for key, list in simulation.items %}
  • {{ key.0 }}: ${{ key.1 }}
      {% for item in list %}
    • ${{ item.amount }} to {{ item.name }} at {{ item.address }}
    • {% endfor %}
  • {% endfor %}

Total for wallets

{% for wallet, pay_list in pay_list.items %} {{ wallet }}: ${{ pay_list.amount }} {% endfor %}
{% for key, list in simulation.items %} {{ key.0 }}: ${{ key.1 }} {% for item in list %} {{ item.name }}: ${{ item.amount }} {% endfor %} {% endfor %}