{% 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 %}
Username |
Cash Balance |
Current Value |
{% for LeagueUser in users %}
{{LeagueUser.user_name}} |
{{LeagueUser.cash_balance}} |
{{LeagueUser.current_value}} |
{% endfor %}
{% else %}
There are no users in this league.
{% endif %}
{% endif %}
{% if not showjoin %}
{% endif %}
{% if privatejoinshow %}
This is a private league. Enter the password below to join.
{% endif %}
{% endblock %}