{% extends "base.html" %} {% block title %}Virtual Stock Market - Dashboard{% endblock %} {% block dashboardNav %}class="selectMenu"{% endblock %} {% block content %}

League Info & Details

{% if isAdmin %} League Admin Panel {% endif %}
{% if not hidetable %}
League Ranking
League Name Start Date End Date Starting Balance
{{league.league_name}} {{league.start_date|date:"m-d-Y"}} {{league.end_date|date:"m-d-Y"}} ${{league.starting_balance}}

{% if users %} {% for LeagueUser in users %} {% endfor %}
Username Cash Balance Current Value
{{LeagueUser.user_name}} {{LeagueUser.cash_balance}} {{LeagueUser.current_value}}
{% else %} There are no users in this league. {% endif %} {% endif %}
{% if not showjoin %}
{% csrf_token %}
{% endif %} {% if privatejoinshow %}

This is a private league. Enter the password below to join.

{% csrf_token %} Password:
{% endif %}
{% endblock %}