{% 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 %}
{% for key in experiment_keys %}
{{key|title}} | {{experiment|attr:key}} |
{% endfor %}
{% for configuration in configurations %}
{{configuration}}
{% if configuration.device.device_type.name == 'dds' %}
Frequency A (Mhz) | {{configuration.frequencyA_Mhz}} |
Multiplier | {{configuration.multiplier}} |
{% endif %}
{% if configuration.device.device_type.name == 'rc' %}
NTXs | {{configuration.ntx}} |
IPP(km) | {{configuration.ipp}} |
{% for tx_line in configuration.tx_lines %}
{{tx_line.name}} |
Width(km) | {{tx_line.width}} |
Taus | {{tx_line.taus}} |
codes | {{tx_line.codes}} |
Sample Windows | {{tx_line.windows}} |
{% endfor %}
{% endif %}
{% if configuration.device.device_type.name == '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 }} |
Rate (MB/h) | {{ rate }} |
{% endif %}
{% endfor %}
{% endblock %}
{% block sidebar%}
{% include "sidebar_devices.html" %}
{% endblock %}
{% block extra-js%}
{% endblock %}