{% extends 'base_admin.html.twig' %} {% block title %}Pub{% endblock %} {% block body %}

Pub

Id {{ pub.id }}
Name {{ pub.name }}
Slug {{ pub.slug }}
Address1 {{ pub.address1 }}
Address2 {{ pub.address2 }}
City {{ pub.city }}
Postcode {{ pub.postcode }}
Trading start date {{ pub.launchAt ? pub.launchAt|date('d-M-Y') : '' }}
Website {{ pub.website }}
EIS Certification received {{ pub.isEisApplicationComplete ? 'Yes' : 'No' }}
Shares
    {% for share in pub.shares %}
  • {{ share.user.fullName }} : {{ share.investmentAmount }}
  • {% endfor %}
Return to list of pubs edit {{ include('dashboard/pub/_delete_form.html.twig') }} {% endblock %}