{% extends "base.html" %} {% block title %}{{ module.full_name }} - Tactus Documentation{% endblock %} {% block header %}{{ module.full_name }}{% endblock %} {% block content %} {% if module.index_content %}
{{ module.index_content|markdown|safe }}
{% elif module.overview %}
{{ module.overview|markdown|safe }}
{% endif %} {% if module.examples %}

Examples

{% for example in module.examples %} {% if example.source == "doc_block" %}

{{ example.title }}

{% if example.description %}

{{ example.description }}

{% endif %}
{{ example.code }}
{% endif %} {% endfor %} {% endif %} {% if module.parameters %}

Parameters

{% for param in module.parameters %}
{{ param.name }} {% if param.type_hint %} {{ param.type_hint }} {% endif %} {% if param.required %} required {% else %} optional {% endif %}

{{ param.description }}

{% if param.default %}

Default: {{ param.default }}

{% endif %}
{% endfor %} {% endif %} {% if module.features %}

Specifications

{% for feature in module.features %}

{{ feature.name }}

{% if feature.description %}

{{ feature.description }}

{% endif %} {% for scenario in feature.scenarios %}

{{ scenario.name }}

{% for step in scenario.steps %}
{{ step.keyword }} {{ step.text }}
{% endfor %}
{% endfor %} {% endfor %} {% endif %} {% if module.doc_blocks|length > 1 %}

Additional Documentation

{% for doc_block in module.doc_blocks[1:] %}
{{ doc_block.content|markdown|safe }}
{% endfor %} {% endif %}

Source: {{ module.file_path }}

Lines: {{ module.line_count }}

{% endblock %}