about summary refs log tree commit diff
path: root/uploader/templates/phenotypes/load-phenotypes-success.html
blob: 1fb0e613187bfa4dd7749f4cbbd9813228d9f2f9 (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 "phenotypes/base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%from "macro-table-pagination.html" import table_pagination%}

{%block title%}Phenotypes{%endblock%}

{%block pagetitle%}Phenotypes{%endblock%}

{%block contents%}
{{super()}}

<div class="row">
  <p>You have successfully loaded
    <!-- maybe indicate the number of phenotypes here? -->your
    new phenotypes into the database.</p>
  <!-- TODO: Maybe notify user that they have sole access. -->
  <!-- TODO: Maybe provide a link to go to GeneNetwork to view the data. -->
  <p>View your data
    <a href="{{search_page_uri}}"
       target="_blank">on GeneNetwork2</a>.
    You might need to login to GeneNetwork2 to view specific traits.</p>
</div>
{%endblock%}


{%block more_javascript%}{%endblock%}