Update templates to consistently use {% static %} instead of hard coding paths
[htsworkflow.git] / htsworkflow / frontend / templates / experiments / sequencer.html
1 {% extends "base_site.html" %}
2 {% load humanize i18n %}
3 {% load staticfiles %}
4 {% block extrahead %}
5     <!-- App Stuff -->
6     <link type="text/css" rel="stylesheet" href="{% static "css/app.css" %}" />
7     <script type="text/javascript" src="{% static "js/jquery.min.js" %}"></script>
8
9     {% block additional_javascript %}
10     {% endblock %}
11 {% endblock %}
12
13 {% block content %}
14     <h1>Sequencer</h1>
15     <dl about="{{sequencer.get_absolute_url}}" typeof="libns:sequencer">
16       <dt>Name</dt>
17       <dl property="libns:sequencer_name">{{sequencer.name}}</dl>
18       <dt>Instrument Name</dt>
19       <dl property="libns:insrument_name">{{sequencer.instrument_name}}</dl>
20       <dt>Model</dt>
21       <dl property="libns:model">{{sequencer.model}}</dl>
22       <dt>Comment</dt>
23       <dl></dl>
24     </dl>
25 {% endblock %}