##// END OF EJS Templates
Update templates
Update templates

File last commit:

r35:1d0c19b50218
r35:1d0c19b50218
Show More
cartas.html
16 lines | 824 B | text/html | HtmlDjangoLexer
<!-- CARDs -->
<p>Real time observations include data from a net of instruments of the Jicamarca Radio Observatory.</p>
<div class="row text-center justify-content-around pt-4">
{% for exp in experiments %}
<div class="col-xs">
<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.plot %}" role="button">{{plot.name}}</a>
{% endfor %}
</div>
</div></div>
{% endfor %}
</div>
<!-- fin CARDs -->