{% include '_header.html' %}

Observation Details

{% if observation and observation|length > 0 %} {% set obs = observation[0] %}
{% for key, value in obs.items() %} {% endfor %}
Field Value
{{ key }} {% if value is none %} null {% elif value == "" %} empty {% elif key in ['data', 'raw'] and value|length > 200 %}
{{ value[:200] }}...
Show full content
{{ value }}
{% elif key in ['created_at', 'committer_when'] %} {{ value }} {% elif key == 'latest' %} {% if value == 1 %} Latest {% else %} Historical {% endif %} {% elif key == 'observation_type' %} {{ value }} {% elif key == 'observation_key' %} {{ value }} {% else %} {{ value }} {% endif %}
{% if obs._repo_id %} View Repository {% endif %} {% if obs._repo_id and obs.observation_key %} View All {{ obs.observation_key }} Observations {% endif %}
{% else %}
No observation data found

The requested observation could not be located.

Browse All Observations
{% endif %}
{% include '_footer_scripts.html' %}