{% extends "base.html" %} {% block title %}{{ page_name }}{% endblock %} {% block navigation %} {# Purely internal navigation links to take you up/down the page #} {% endblock %} {% block content %} {# Describe the runs that are included #}

Included Runs

{% for warning in warnings %}

{{ warning }}

{% endfor %}
{% for run in runs %}
{{ run.description }}
{% endfor %}
{# Show off our figures! #} {% for section in sections.values() | sort(attribute="title") %}

{{ section.title }}

{% for plot in section.plots %}

{{ plot.title }}

{{ plot.caption }}

{% endfor %}
{% endfor %} {# Create lightbox targets. #} {% for section in sections.values() | sort(attribute="title") %} {% for plot in section.plots %} {% endfor %} {% endfor %} {% endblock %} {% block footer %}

Created with version {{ pipeline_version }} of the pipeline with version {{ velociraptor_version }} of the velociraptor python library on {{ creation_date }}.

{% endblock %}