{% block head %}
{% block title %}{% endblock %} - RAMP
{% endblock %}
RAMP
{% if not session.logged_in %}
Login
Sign Up
{% endif %} {% if session.logged_in %}
Hi {{ current_user.firstname }}!
{{ current_user.name }}
{{ current_user.email }}
update profile
log out
{% endif %}
RAMP
{% if admin %}
Approve users
Manage users
{% endif %}
Problems & events
{% if event and current_user.is_authenticated %}
{{ event.name }}
Overview
{% if (approved is not defined) or (approved == True) %}
Leaderboard
Competition leaderboard
Sandbox
My submissions
{% else %}
Leaderboard
Competition leaderboard
Sandbox
My submissions
{% endif %} {% if admin %}
Dashboard admin
Private leaderboard
Private competition leaderboard
Update event
{% endif %}
{% elif current_user.is_authenticated %}
Select event to view
Overview
{% if (approved is not defined) or (approved == True) %}
Leaderboard
Competition leaderboard
Sandbox
My submissions
{% endif %} {% if admin %}
Dashboard admin
Private leaderboard
Private competition leaderboard
Update event
{% endif %}
{% endif %}
{% block content %} {% endblock %}
{# #} {% block scripts %} {% endblock %}