{%extends "samples/sui-base.html"%} {%from "flash_messages.html" import flash_all_messages%} {%from "populations/macro-select-population.html" import select_population_form%} {%block title%}Samples — List Samples{%endblock%} {%block contents%} {{super()}}

manage samples

{{flash_all_messages()}}
add new samples
{%if samples | length > 0%}

Population "{{population.FullName}} ({{population.Name}})" already has {{total_samples}} samples/individuals entered. You can explore the list of samples in the table below.

{%if offset > 0:%} Previous {%endif%}
Samples {{offset}} — {{offset+(count if offset + count < total_samples else total_samples - offset)}} / {{total_samples}}
{%if offset + count < total_samples:%} Next {%endif%}
{%for sample in samples%} {%endfor%}
Name Auxilliary Name Symbol Alias
{{sample.sequence_number}} {{sample.Name}} {{sample.Name2}} {{sample.Symbol or "-"}} {{sample.Alias or "-"}}
{%else%}

There are no samples entered for this population. Click the "Add Samples" button above, to add some new samples.

{%endif%} {%endblock%}