aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/caf/templates
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-03-06 17:52:48 +0000
committerMatthew Lemon <matt@matthewlemon.com>2020-03-06 17:52:48 +0000
commit420eb8308847e413d63b0692aba78cee7d1405f4 (patch)
tree9c0d78c01ac94abdc7db269a65d5314e98133a25 /ctrack/caf/templates
parentd901a8af93efa94545b5bd6ab7a323786923cb67 (diff)
reverted idea to use a custom manager to include NIS POC in systems list
Diffstat (limited to 'ctrack/caf/templates')
-rw-r--r--ctrack/caf/templates/caf/applicablesystem_list.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/ctrack/caf/templates/caf/applicablesystem_list.html b/ctrack/caf/templates/caf/applicablesystem_list.html
index 059b61e..f8d6195 100644
--- a/ctrack/caf/templates/caf/applicablesystem_list.html
+++ b/ctrack/caf/templates/caf/applicablesystem_list.html
@@ -31,7 +31,11 @@
<td class="tabaligncenter">{{ sys.caf.confidence_grading.descriptor }}</td>
<td>{{ sys.caf.triage_review_date }}</td>
<td>{{ sys.caf.triage_review_inspector.name }}</td>
- <td>{{ sys.nis_contact }}</td>
+ {% if sys.get_primary_contact %}
+ <td>{{ sys.get_primary_contact.first }}</td>
+ {% else %}
+ <td>NA</td>
+ {% endif %}
</tr>
{% endfor %}
</table>