File: _general.html.jinja

package info (click to toggle)
python-mne 1.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 131,492 kB
  • sloc: python: 213,302; javascript: 12,910; sh: 447; makefile: 144
file content (58 lines) | stat: -rw-r--r-- 1,917 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{% set section = "General" %}
{% set section_class_name = section | lower | append_uuid %}

{# Collapse content during documentation build. #}
{% if collapsed %}
{% set collapsed_row_class = "mne-repr-collapsed" %}
{% else %}
{% set collapsed_row_class = "" %}
{% endif %}

{%include 'static/_section_header_row.html.jinja' %}

{% if filenames %}
<tr class="repr-element {{ section_class_name }} {{ collapsed_row_class }}">
    <td class="mne-repr-section-toggle"></td>
    <td>Filename(s)</td>
    <td>
        {% for f in filenames %}
        {{ f }}
        {% if not loop.last %}<br />{% endif %}
        {% endfor %}
    </td>
</tr>
{% endif %}
<tr class="repr-element {{ section_class_name }} {{ collapsed_row_class }}">
    <td class="mne-repr-section-toggle"></td>
    <td>MNE object type</td>
    <td>{{ inst | data_type }}</td>
</tr>
<tr class="repr-element {{ section_class_name }} {{ collapsed_row_class }}">
    <td class="mne-repr-section-toggle"></td>
    <td>Measurement date</td>
    {% if info["meas_date"] is defined and info["meas_date"] is not none %}
    <td>{{ info["meas_date"] | dt_to_str }}</td>
    {% else %}
    <td>Unknown</td>
    {% endif %}
</tr>
<tr class="repr-element {{ section_class_name }} {{ collapsed_row_class }}">
    <td class="mne-repr-section-toggle"></td>
    <td>Participant</td>
    {% if info["subject_info"] is defined and info["subject_info"] is not none %}
    {% if info["subject_info"]["his_id"] is defined %}
    <td>{{ info["subject_info"]["his_id"] }}</td>
    {% endif %}
    {% else %}
    <td>Unknown</td>
    {% endif %}
</tr>
<tr class="repr-element {{ section_class_name }} {{ collapsed_row_class }}">
    <td class="mne-repr-section-toggle"></td>
    <td>Experimenter</td>
    {% if info["experimenter"] is defined and info["experimenter"] is not none %}
    <td>{{ info["experimenter"] }}</td>
    {% else %}
    <td>Unknown</td>
    {% endif %}
</tr>