26 lines
696 B
HTML
26 lines
696 B
HTML
<section id="primary-point-of-contact" class="panel">
|
|
<div class="panel__content">
|
|
{% if g.matchesPath("primary-point-of-contact") %}
|
|
{% include "fragments/flash.html" %}
|
|
{% endif %}
|
|
|
|
<h2>{{ "fragments.ppoc.title" | translate }}</h2>
|
|
<p>{{ "fragments.ppoc.subtitle" | translate }}</p>
|
|
|
|
<p>
|
|
<strong>
|
|
{{ portfolio.owner.first_name }}
|
|
{{ portfolio.owner.last_name }}
|
|
</strong>
|
|
<br />
|
|
{{ portfolio.owner.email }}
|
|
<br />
|
|
{{ portfolio.owner.phone_number | usPhone }}
|
|
</p>
|
|
|
|
{% if user_can(permissions.EDIT_PORTFOLIO_POC) %}
|
|
{% include "fragments/admin/change_ppoc.html" %}
|
|
{% endif %}
|
|
</div>
|
|
</section>
|