{%extends "populations/base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%from "species/macro-select-species.html" import select_species_form%}

{%block title%}Populations{%endblock%}

{%block pagetitle%}Populations{%endblock%}


{%block contents%}
{{flash_all_messages()}}

<div class="row">
  <p>
    Your experiment data will relate to a particular population from a
    particular species. Let us know what species it is you want to work with
    below.
  </p>
</div>

<div class="row">
  {{select_species_form(url_for("species.populations.index"), species)}}
</div>
{%endblock%}