{% extends "base.html" %} {% block title %}{{ project.name }}{% endblock %} {% block content %}
{{ project.description }}
{% endif %}{{ _('Creator') }}: {% if project.created_by_id == current_user.id %} {{ _('You') }} {% else %} {{ project.created_by.name }} {% endif %}
{{ _('Created') }}: {{ project.created_at.strftime('%Y-%m-%d') }}
{{ _('Members') }}: {{ project.memberships|length }}
{% if project.end_date %}{{ _('End Date') }}: {{ project.end_date.strftime('%Y-%m-%d %H:%M') }}
{% endif %} {% if project.is_project_over() %}{{ _("Results will only be visible after the project ends") }}
{% endif %}{{ _('Share this link to invite others to join your project.') }}
{{ _('You can still submit thoughts, but rankings will only be visible after the project is marked as ended.') }}
{{ _('No thoughts have been submitted to this project yet.') }}
{{ _('Be the first to submit a thought!') }}