cartas.html
25 lines
| 988 B
| text/html
|
HtmlDjangoLexer
|
r11 | |||
<!-- CARDs --> | ||||
<section class="container-fuid mt-5 px-5 py-2 bg-negro"> | ||||
<div class="card-deck"> | ||||
{% for exp in experiments %} | ||||
<div class="col-md-3 mt-5"> | ||||
<div id="card_{{exp.code}}" class="card-online text-white text-justify border-info {{exp.bgcolor}}"> | ||||
<div id="{{exp.code}}"> | ||||
<h5 class="card-title font-italic font-weight-bold text-center bordes">{{exp.name}}</h5> | ||||
<div class="card-body text-dark bordes-down"> | ||||
<h5><div id="dato_{{exp.code}}" class="lastData">Last data: {{exp.date}}</div></h5> | ||||
{% for plot in exp.plots %} | ||||
<a class="btn btn-outline-dark" href="{% url 'url-plot' exp.code plot %}" role="button">{{plot}}</a> | ||||
{% endfor %} | ||||
<h3><div id="alert_{{exp.code}}" >{{exp.status}}</div></h3> | ||||
</div> | ||||
</div> | ||||
</div> | ||||
</div> | ||||
{% endfor %} | ||||
</div> | ||||
</section> | ||||
<!-- fin CARDs --> | ||||