{% extends 'extends/layout.html' %} {% load static %} {% load humanize %} {% load mathfilters %} {% block content %} {% block scripts %} {% endblock %}
{% if show_business_filters %}
{% if the_filter_branch %}
Showing results for {{ the_filter_branch }}
{% endif %}
{% endif %}
Capitalisation

{{ currency }} {{ cap|intcomma }}/=

share price

{{ currency }} {{ price|intcomma }}/=

Outstanding Shares

{{ shares|floatformat:1|intcomma }} Shares

Share Capital

{{ currency }} {{ share_capital|floatformat:1|intcomma }}/=

Shares Sold

{{ sold|floatformat:1|intcomma }} Shares

Shares Balance

{{ share_balance|floatformat:1|intcomma }} Shares

Total Shareholders

{{ share_holders.count|intcomma }} Members

Shares Limit

{{ share_limit|intcomma }} Shares

Recent shares transactions
{% if not show_business_filters %} Sell Shares {% endif %} {% if not show_business_filters %} {% endif %}
{% for transact in transactions %} {% endfor %}
No Date Reference Buyer Shares Seller Narration Actions
{{ forloop.counter }}. {{ transact.date }} {% if transact.transaction.txno %} {{ transact.transaction.txno }} {% else %} NA {% endif %} {{ transact.buyer.biodata.name }} {{ transact.shares }} {% if transact.seller %} {{ transact.seller.biodata.name }} {% else %} {{ mybranch.business.name }} {% endif %} {{ transact.narration }}
{% endblock %}