{% extends 'portal.html' %} {% block title %}Populations{% endblock %} {% block content %} {% for item in populations %} {% endfor %}
Population name Structure names Date span Structures Channels
{{ item["population_name"] }} {% for name in item["structure_names"] %}{{ "," if loop.index > 1}} {{ name }}{% endfor %} {{ item["start_date_time"] | replace("-", "/") }} -> {{ item["end_date_time"].split(" ")[1] if item["start_date_time"].split(" ")[0] == item["end_date_time"].split(" ")[0] else "
" + item["end_date_time"] | replace("-", "/")}}
{{ item["structure_names"] | length }} {{ item["channel_names"] | length }} {{ item["link_name"] }}
{% endblock %}