{% 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 %}
Library

{{ strategies|length }} strategies

Create and update strategies from Codex with $strategy-creator.

{% for strategy in strategies %} {% empty %}
No strategies
{% endfor %}
{% endif %} {% endblock %}