{% extends "base.html" %}
{% load bootstrap3 %}
{% load static %}
{% load main_tags %}
{% block extra-head %}
{% endblock %}
{% block exp-active %}active{% endblock %}
{% block content-title %}{{title}}{% endblock %}
{% block content-suptitle %}{{suptitle}}{% endblock %}
{% block content %}
{% block menu-actions %}
{% endblock %}
{% for key in experiment_keys %}
{{key|title}} | {{experiment|attr:key}} |
{% endfor %}
# |
{% for key in configuration_keys %}
{{ key|title }} |
{% endfor%}
{% for item in configurations %}
{{ forloop.counter }} |
{% for key in configuration_keys %}
{{ item|value:key }} |
{% endfor %}
{% endfor %}
{% endblock %}
{% block sidebar%}
{% include "sidebar_devices.html" %}
{% endblock %}
{% block extra-js%}
{% endblock %}