{% extends "page.html" %} {% block page_content %}

Система идей

{% for idea in ideas %}{% endfor %}
IDНазваниеОписаниеСтатусДата
{{ idea.id }} {{ idea.title }} {{ (idea.description or '')[:100] }}{% if (idea.description or '')|length > 100 %}…{% endif %} {{ {'normal':'Обычная','in_progress':'В работе','completed':'Выполнено'}.get(idea.status, idea.status) }} {{ idea.updated_at.strftime('%d.%m.%Y') if idea.updated_at else '' }}
{% endblock %}