Update templates to consistently use {% static %} instead of hard coding paths
[htsworkflow.git] / htsworkflow / frontend / templates / samples / species_detail.html
1 {% extends "base_site.html" %}
2 {% load staticfiles %}
3 {% load humanize i18n %}
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 <div id="genome_detail">
15   <h2>About this Genome</h2>
16   <b>Common Name</b>: 
17      <span property="libns:species_name">{{ species.common_name}}</span><br/>
18   <b>Scientific Name</b>: 
19      <span property="libns:species_name">{{ species.scientific_name}}</span><br/>
20 </div>  
21 {% endblock %}