{% extends "base.html" %}
{% comment %}
Written by Bill Rideout brideout@haystack.mit.edu
Base template for Madrigal parameter metadata page
$Id: site_metadata.html 4949 2015-04-29 15:21:17Z brideout $
{% endcomment %}
{% block title %}Madrigal parameter metadata{% endblock %}
{% block content %}
List of CEDAR/Madrigal parameters
Parameter categories
{% for categoryUrl in categoryUrlList %}
{% if forloop.counter0|divisibleby:3 %}{% endif %}
{{ categoryUrl|safe }} |
{% if forloop.counter|divisibleby:3 or forloop.last %}
{% endif %}
{% endfor %}
{% for items in parmList %}
{% if items|length == 1 %}
{% if forloop.counter0 != 0 %}
{% endif %}
{{ items.0 }}
Mnemonic |
Description |
Units |
Parameter Id |
{% else %}
{% if forloop.counter|divisibleby:2 %}
{% else %}
{% endif %}
{{ items.0 }} |
{{ items.1 }} |
{{ items.2 }} |
{{ items.3 }} |
{% endif %}
{% endfor %}
{% endblock %}