annot-server/webapp/templates/pianoroll_index.html
author ymh <ymh.work@gmail.com>
Thu, 22 Jan 2015 07:04:42 +0100
changeset 108 082b64a5c699
parent 76 029cdbeebf03
permissions -rw-r--r--
add vizualizations to server
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
76
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
<!doctype html>
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
<html>
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
<head>
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
  <meta charset="utf-8">
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
  <meta name="viewport" content="width=device-width, initial-scale=1">
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
  <title>Mons by IRI</title>
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
  <link rel="stylesheet" href="{{ config['STATIC_URL'] }}/css/lib.css">
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
  <link rel="stylesheet" href="{{ config['STATIC_URL'] }}/css/base.css">
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
</head>
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
<body>
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
  <div class="container" id="index-container">
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
      <h1 class="row">Évènements actifs&nbsp;:</h1>
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
      {% for event in events %}
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
      <div class="row">
108
082b64a5c699 add vizualizations to server
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
    15
          <div class="event-label">{{ event.label }} : <a href="{{ url_for('page_pianoroll_event_code', event_code=event.code) }}">pianoroll</a>, <a href="{{ url_for('page_annotviz_event_code', event_code=event.code) }}">annotviz</a></div>
76
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
          <dl>
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
              <dt>Code&nbsp;: {{ event.code }}</dt>
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
              <dd>Description&nbsp;: {{ event.description }}</dd>
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    19
          </dl>
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    20
      </div>
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    21
      {% endfor %}
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    22
  </div>
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    23
 </body>