##// END OF EJS Templates
Test Version
Test Version

File last commit:

r21:dc5f8680b6e1
r22:3d86891def25
Show More
cartas.html
15 lines | 696 B | text/html | HtmlDjangoLexer
<!-- CARDs -->
<div class="mb-3 text-center">
{% for exp in experiments %}
<div class="col-md-4 col-sm-6 col-12">
<div id="card_{{exp.code}}" class="card mb-4 box-shadow text-{{exp.style}} border-{{exp.style}}">
<div id="card_header_{{exp.code}}" class="card-header bg-{{exp.style}} text-white">{{exp.name}}</div>
<div id="card_body_{{exp.code}}"class="card-body">
<div id="date_{{exp.code}}">Last data: {{exp.date | date:"h:i:s a" }}</div>
{% for plot in exp.plots %}
<a class="btn btn-outline-{{exp.style}}" href="{% url 'url-plot' exp.code plot %}" role="button">{{plot}}</a>
{% endfor %}
</div>
</div></div>
{% endfor %}
</div>
<!-- fin CARDs -->