{% extends 'base_admin.html.twig' %} {% block title %}Hyperglance Investor Forum{% endblock %} {% block body %}

Hyperglance


{% for pub in pubs %} {% set mytotalshares = 0 %} {% for share in shares %} {% if share.user.id == user.id %} {% set mytotalshares = mytotalshares + share.shareCount %} {% endif %} {% endfor %} {% set mytotalconsideration = 0 %} {% for share in shares %} {% if share.user.id == user.id %} {% set mytotalconsideration = mytotalconsideration + share.investmentAmount %} {% endif %} {% endfor %} {% else %} {% endfor %}
Name Hover for address My Equity (# shares) Contribution (£) Current Valuation Director1 Hover for contact details Director2 Hover for contact details
{% if is_granted('ROLE_ADMIN') %} {{ pub.name }} {% else %} {{ pub.name }} {% endif %} {{ mytotalshares |number_format }} {{ mytotalconsideration |number_format }} {{ (mytotalshares*pub.mtm) |number_format }} {% if (pub.director1 is not null) %} {% if pub.director1.linkedIn is not null %} {{ pub.director1.fullname }} {% else %} {{ pub.director1.fullname }} {% endif %} {% endif %} {% if (pub.director2 is not null) %} {% if pub.director2.linkedIn is not null %} {{ pub.director2.fullname }} {% else %} {{ pub.director2.fullname }} {% endif %} {% endif %} QnA Website CH Share register


{% set totalshares = 0 %} {% for share in shares %} {% set totalshares = totalshares + share.shareCount %} {% endfor %} {% set totalconsideration = 0 %} {% for share in shares %} {% set totalconsideration = totalconsideration + share.investmentAmount %} {% endfor %} {% for pub in pubs %}
Fund raise history

Total shares: {{ totalshares |number_format }}

Total fund raise:£ {{ totalconsideration |number_format }}

Last fund raise share : £ {{ pub.mtm }}

Market cap (at latest fund raise price): £ {{ (totalshares*0.25) |number_format }}

{% endfor %}
{% if is_granted('ROLE_SUPER_ADMIN') %} Create new {% endif %} {% endblock %} {% block datatable %} {% endblock datatable %}