Update oversight section
This commit is contained in:
parent
cc4d9670a1
commit
2a1f3576c5
@ -55,7 +55,11 @@
|
|||||||
@include icon-size(24);
|
@include icon-size(24);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.icon--remove {
|
&.icon--remove, &.icon--error {
|
||||||
@include icon-color($color-red);
|
@include icon-color($color-red);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.icon--ok {
|
||||||
|
@include icon-color($color-green)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -70,6 +70,16 @@
|
|||||||
color: $color-gray-light;
|
color: $color-gray-light;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.error {
|
||||||
|
color: $color-red;
|
||||||
|
font-weight: $font-bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ok {
|
||||||
|
color: $color-green;
|
||||||
|
font-weight: $font-bold;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel__heading {
|
.panel__heading {
|
||||||
|
@ -123,7 +123,53 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</div>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<h3 class="subheading">Oversight {{ TOEditLink(screen=3) }}</h3>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col col--grow">
|
||||||
|
<h4>Contracting Officer (KO)</h4>
|
||||||
|
{{ task_order.ko_first_name }} {{ task_order.ko_last_name }}<br>
|
||||||
|
{{ task_order.ko_email }}<br>
|
||||||
|
{{ task_order.ko_phone_number }}<br>
|
||||||
|
DoD ID: {{ task_order.ko_dod_id}}<br>
|
||||||
|
{% if task_order.ko_invite %}
|
||||||
|
<span class="ok">{{ Icon('ok', classes='icon--ok') }} Invited</span>
|
||||||
|
{% else %}
|
||||||
|
<span class="error">{{ Icon('alert', classes='icon--error') }} Not Yet Invited</span>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col col--grow">
|
||||||
|
<h4>Contracting Officer Representative (COR)</h4>
|
||||||
|
{{ task_order.cor_first_name }} {{ task_order.cor_last_name }}<br>
|
||||||
|
{{ task_order.cor_email }}<br>
|
||||||
|
{{ task_order.cor_phone_number }}<br>
|
||||||
|
DoD ID: {{ task_order.cor_dod_id}}<br>
|
||||||
|
{% if task_order.cor_invite %}
|
||||||
|
<span class="ok">{{ Icon('ok', classes='icon--ok') }} Invited</span>
|
||||||
|
{% else %}
|
||||||
|
<span class="error">{{ Icon('alert', classes='icon--error') }} Not Yet Invited</span>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col col--grow">
|
||||||
|
<h4>IA Security Officer</h4>
|
||||||
|
{{ task_order.so_first_name }} {{ task_order.so_last_name }}<br>
|
||||||
|
{{ task_order.so_email }}<br>
|
||||||
|
{{ task_order.so_phone_number }}<br>
|
||||||
|
DoD ID: {{ task_order.so_dod_id}}<br>
|
||||||
|
{% if task_order.so_invite %}
|
||||||
|
<span class="ok">{{ Icon('ok', classes='icon--ok') }} Invited</span>
|
||||||
|
{% else %}
|
||||||
|
<span class="error">{{ Icon('alert', classes='icon--error') }} Not Yet Invited</span>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user