about summary refs log tree commit diff
path: root/uploader/templates/index2.html
blob: 72fea2f370b5415c15408280d398b747dd04b729 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{%extends "base2.html"%}
{%from "flash_messages.html" import flash_all_messages%}

{%block title%}Home{%endblock%}

{%block pagetitle%}Home{%endblock%}

{%block extra_breadcrumbs%}{%endblock%}

{%block contents%}

<div class="row">{{flash_all_messages()}}</div>

{%if user_logged_in()%}
<div class="row">
  <p>Select from:</p>
  <ul>
    <li>Species</li>
    <li>Publications</li>
  </ul>
</div>
{%else%}
<div class="row">
  <p>
    <a href="{{authserver_authorise_uri()}}"
       title="Sign in to the system"
       class="btn btn-primary">Sign in</a>
    to continue.</p>
</div>
{%endif%}

{%endblock%}



{%block sidebarcontents%}
<div class="row">
  <form id="frm-quick-navigation">
    <legend>Quick Navigation</legend>
    <div class="form-group">
      <label for="fqn-species-id">Species</label>
      <select name="species_id">
        <option value="">Select species</option>
      </select>
    </div>
  </form>
</div>
{%endblock%}