{% 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 configuration in configurations %}
{% if configuration.device.device_type.name == 'dds' %}
DDS
{% endif %}
{% if configuration.device.device_type.name == 'rc' %}
CR
IPP(km) | {{experiment_data.configurations.rc.ipp}} |
NTX | {{experiment_data.configurations.rc.ntx}} |
TX | {{tx}} |
Code | {{code}} |
Sampling Window | {{window|linebreaks}} |
{% endif %}
{% if configuration.device.device_type.name == 'jars' %}
JARS
Data Type | {{exp_type}} |
# Channels | {{configuration.channels_number}} |
Coh Int | {{configuration.cohe_integr}} |
FFT Points | {{configuration.fftpoints}} |
{% if exp_type == 'PDATA'%}
Inc Int | {{configuration.incohe_integr}} |
Spec. Comb. | {{configuration.spectral}} |
{% endif %}
Acq Prof | {{configuration.acq_profiles}} |
Prof x Block | {{configuration.profiles_block}} |
Block x File | {{ configuration.raw_data_blocks }} |
{% endif %}
{% endfor %}
Extra Parameters
{% if jars_conf %}
Rate (MB/h) | {{ rate }} |
{% endif %}
{% if dds_conf %}
Vmax (m/s) | {{ rate }} |
{% endif %}
{% endblock %}
{% block sidebar%}
{% include "sidebar_devices.html" %}
{% endblock %}
{% block extra-js%}
{% endblock %}