{% extends "page.html" %} {% block page_content %}
| 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 '' }} |