{% extends "layouts/base.html" %} {% block main_content %}

{{ i18n.t('template.list') }}

{{ i18n.t('template.list') }}

{{ i18n.t('template.new') }}
{% if templates %}

{{ i18n.t('template.custom') }}

{{ i18n.t('template.custom') }}

    {% for template in templates %}
  • {% if template.category == 'Business' %} {% elif template.category == 'Technical' %} {% elif template.category == 'Creative' %} {% elif template.category == 'Analytical' %} {% else %} {% endif %}

    {{ template.name }}

    {{ i18n.t('template.category.' + template.category.lower()) or template.category }}
    {% if template.description %}

    {{ template.description }}

    {% endif %} {% if template.variables %}
    {{ template.variables.split(',') | length }} {{ i18n.t('template.variables').lower() }}
    {% endif %}
    {% if not template.is_builtin %} {% endif %}
  • {% endfor %}
{% else %}

{{ i18n.t('template.custom') }}

{{ i18n.t('template.custom') }}

{{ i18n.t('template.empty') }}

{{ i18n.t('template.empty_desc') }}

{{ i18n.t('template.create') }}
{% endif %}

{{ i18n.t('template.category.business') }}

{{ i18n.t('template.category.business') }}

Email Writing
Meeting Summary
Proposal Writing

{{ i18n.t('template.category.technical') }}

{{ i18n.t('template.category.technical') }}

Code Review
API Documentation
Bug Report

{{ i18n.t('template.category.creative') }}

{{ i18n.t('template.category.creative') }}

Blog Post
Social Media
Story Writing
{% endblock %}