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

Portfolios

The following are your portfolios from each of your leagues:


{% if portfolios %} {% for item in portfolios %} {% endfor %}
League Name:  Current Portfolio Value:  End Date: 
{{ item.name }} ${{ item.value|floatformat:2 }} {{ item.enddate|date:"m/d/Y" }}
{% else %} You have no portfolios {% endif %}
{% endblock %}