{% extends "web/base.html" %} {% block title %}Strategies | tcx{% endblock %} {% block page_label %}Strategies{% endblock %} {% block content %} {% if strategy_mode == "detail" %}
Back to list
{% endif %} {% if strategy_mode == "detail" and selected_strategy %}
Markdown preview

{{ selected_strategy.heading }}

{% if strategy_preview.metadata_items %}
Frontmatter
{% for item in strategy_preview.metadata_items %}
{{ item.label }}
{{ item.value }}
{% endfor %}
{% endif %}
{{ strategy_preview.html|safe }}
{% else %}
To add, delete, or change a strategy, use Codex with $strategy-creator.
Library

{{ strategies|length }} strategies

{% for strategy in strategies %} {% empty %}
No strategies Use Codex with $strategy-creator to add one.
{% endfor %}
{% endif %} {% endblock %}