{% extends "base.html" %} {% block title %}Trait Submission{% endblock %} {% block css %} {% endblock %} {% block content %}

Case Attributes Reference Table

{% for id_, name, description in case_attributes %} {% endfor %}
Case Attribute Description Actions
{{ name }} {{ description }}
{% if modifications or inserts or deletions %}

Please Review These Changes

{% endif %} {% if modifications %}

Modify Existing Case Attributes

{% for data in modifications %} {% endfor %}
Author Diff Action
{{ data.get('author') }} {% if data.get("name")%} Name:
Original: {{ data["name"].get("Original") }}
Current: {{ data["name"].get("Current") }}
Diff:
{{data["name"].get("Diff")}}
{% endif %} {% if data.get("description")%} Description:
Original: {{ data["description"].get("Original") }}
Current: {{ data["description"].get("Current") }}
Diff:
{{data["description"].get("Diff")}}
{% endif %}
{% endif %} {% if deletions %}

Delete Existing Case Attributes

{% for data in deletions %} {% endfor %}
Case Attribute Author Description Action
{{data.get("name")}} {{ data.get('author') }} {{data.get("description")}}
{% endif %} {% if inserts %}

Insert New Case Attributes

{% for data in inserts %} {% endfor %}
Case Attribute Author Description Action
{{ data.get("name") }} {{ data.get("author")}} {{ data.get("description") }}
{% endif %}
{%endblock%} {% block js %} {% endblock %}