Some AMS specific stuff, and plant work
This commit is contained in:
parent
9332337581
commit
e474c140ee
30 changed files with 558 additions and 21 deletions
27
documents/_templates/system.tmpl
Normal file
27
documents/_templates/system.tmpl
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
|
||||
.. Sadly can't get this to work with the same TOC level in additional info.
|
||||
{{ data['name'] }} ({{ data['abbrev']}})
|
||||
{{ "=" * (data['name'] | length + data['abbrev'] | length + 3) }}
|
||||
|
||||
Abbrev: {{data['abbrev']}}
|
||||
|
||||
{{ data['desc'] }}
|
||||
|
||||
Functions
|
||||
---------
|
||||
|
||||
{% for item in data['functions'] %}
|
||||
.. req:: {{item}}
|
||||
:id: R_{{data['abbrev']}}_{{loop.index}}
|
||||
{% endfor %}
|
||||
|
||||
|
||||
Parameters
|
||||
----------
|
||||
{% if data['params'] %}
|
||||
{{ make_list_table_from_mappings(
|
||||
[('Parameter', 'name'), ('Value', 'val'), ('Tags', 'tags')],
|
||||
data['params'],
|
||||
title='System Parameters',
|
||||
) }}
|
||||
{% endif %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue