Templates and fragments that relate to specific resources (portfolios, applications, task orders) should reside in directories named for the relevant resource. This also matches the way the application routes are distributed among modules named for each resource type.
26 lines
701 B
HTML
26 lines
701 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 "portfolios/fragments/change_ppoc.html" %}
|
|
{% endif %}
|
|
</div>
|
|
</section>
|