{% extends "base.html" %} {% block title %}Лобби: {{ room.name }} - Капитал & Рынок{% endblock %} {% block content %}
💰 Лобби
{% if current_user.is_authenticated %} {{ current_user.username }} {% endif %}

{{ room.name }}

Код комнаты: {{ room.code }}
{% if room.status == 'waiting' %} Ожидание {% elif room.status == 'playing' %} Игра идет {% elif room.status == 'finished' %} Завершена {% else %} {{ room.status }} {% endif %}
Игроков:
{{ players|length }}/{{ config.MAX_PLAYERS_PER_ROOM }}
Длительность:
{{ room.total_months }} месяцев
Стартовый капитал:
{{ room.start_capital|format_currency }}
Создатель:
{{ room.creator.username if room.creator else 'Неизвестно' }}
{% if room.settings %} {% set settings_dict = room.settings|from_json %}

Настройки игры:

{% if settings_dict.allow_loans %} ✅ Кредиты разрешены {% else %} ❌ Кредиты запрещены {% endif %} {% if settings_dict.allow_black_market %} ⚫ Чёрный рынок {% else %} ⚪ Без чёрного рынка {% endif %} {% if settings_dict.private_room %} 🔒 Приватная {% else %} 🔓 Публичная {% endif %}
{% endif %}
{% if current_player.is_admin and room.status == 'waiting' %} {% elif room.status == 'playing' %} {% endif %} {% if room.status == 'waiting' %} {% endif %} {% if current_player.is_admin %} {% endif %}
{% if room.status == 'waiting' %}
Готовы к старту: {{ players|selectattr('is_ready')|list|length }}/{{ players|length }}
{% if players|length < 2 %}
⚠️ Нужно минимум 2 игрока для начала игры
{% endif %}
{% endif %}

👥 Участники ({{ players|length }})

{% if players %}
    {% for player in players %}
  • {{ player.user.username[0]|upper if player.user and player.user.username else '?' }}
    {{ player.user.username if player.user else 'Игрок' }} {% if player.is_admin %} Админ {% endif %} {% if player.user_id == current_user.id %} Вы {% endif %}
    {{ player.capital|format_currency }}
    {% if room.status == 'waiting' %}
    {% if player.is_ready %} ✅ Готов {% else %} ⏳ Ожидание {% endif %}
    {% endif %}
    {{ get_ability_name(player.ability) }}
  • {% endfor %}
{% else %}
👤

В комнате пока нет игроков

Пригласите друзей!

{% endif %}

💬 Чат комнаты

Чат загружается...

📊 Статистика комнаты

{{ players|length }}
Игроков
{{ room.current_month }}
Текущий месяц
{{ (players|map(attribute='capital')|sum)|format_currency }}
Общий капитал
{% if players|length > 0 %} {{ ((players|selectattr('is_ready')|list|length / players|length * 100)|round(1)) }}% {% else %} 0% {% endif %}
Готовы
{% endblock %} {% block scripts %} {% endblock %}