blob: 1cc7573ee46255de1ad782e902aed107839185ab (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{%extends "samples/base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%from "populations/macro-select-population.html" import select_population_form%}
{%from "species/macro-display-species-card.html" import display_species_card%}
{%block title%}Samples — Select Population{%endblock%}
{%block pagetitle%}Samples — Select Population{%endblock%}
{%block contents%}
{{flash_all_messages()}}
<div class="row">
{{select_population_form(
url_for("species.populations.samples.select_population", species_id=species.SpeciesId), species, populations)}}
</div>
{%endblock%}
{%block sidebarcontents%}
{{display_species_card(species)}}
{%endblock%}
{%block javascript%}
<script type="text/javascript" src="/static/js/populations.js"></script>
{%endblock%}
|