{% extends "base.html" %} {% block title %}Models - PlanExe{% endblock %} {% block head %} {% endblock %} {% block content %}

Models

Inspect models by profile.

{% for section in profile_sections %}

{{ section.title }}

{{ section.subtitle }}

{{ section.filename }}

{% if section.models %}
{% for model_row in section.models %} {% endfor %}
Prio Key arguments.model Pricing Comment Info
{{ model_row.prio or "-" }} {{ model_row.key }} {{ model_row.model or "-" }} {% set pricing_value = (model_row.pricing_kind or "").lower() %} {% if pricing_value in ["free", "paid"] %} {{ pricing_value }} {% else %} unknown {% endif %} {{ model_row.comment or "-" }} {% if model_row.model_info_url %} Open {% else %} - {% endif %}
{% else %}

none found

{% endif %}
{% endfor %}
{% endblock %}