annot-server/webapp/templates/pianoroll_index.html
author rougeronj
Fri, 17 Apr 2015 11:29:04 +0200
changeset 160 fd3482903412
parent 108 082b64a5c699
permissions -rw-r--r--
update annotviz for 'atelier 3 jour 2'

<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Mons by IRI</title>
  <link rel="stylesheet" href="{{ config['STATIC_URL'] }}/css/lib.css">
  <link rel="stylesheet" href="{{ config['STATIC_URL'] }}/css/base.css">
</head>
<body>
  <div class="container" id="index-container">
      <h1 class="row">Évènements actifs&nbsp;:</h1>
      {% for event in events %}
      <div class="row">
          <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>
          <dl>
              <dt>Code&nbsp;: {{ event.code }}</dt>
              <dd>Description&nbsp;: {{ event.description }}</dd>
          </dl>
      </div>
      {% endfor %}
  </div>
 </body>