annot-server/webapp/templates/pianoroll_index.html
author rougeronj
Thu, 22 Jan 2015 09:26:43 +0100
changeset 111 a7b72620d227
parent 76 029cdbeebf03
child 108 082b64a5c699
permissions -rw-r--r--
Add variable "wait". When this variable set, the annotsroll wait ignore some annotations, and wait before printing an otherone so there is no superposition. Can be passed as an options
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">
029cdbeebf03 filter pianoroll annotation by channel & event
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
          <div class="event-label"><a href="{{ url_for('page_pianoroll_event_code', event_code=event.code) }}">{{ event.label }}</a></div>
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>