{% extends "base.html" %}
{% block title %}{{ user }}{% endblock %}
{% block content %}
    
    {{ user }}
    {% if t3 %}
        
        
3x3x3
        
            | Tiempo | Scramble | 
                {% for time in t3 %}
                    | {{ time.displayTime }} | {{ time.scramble }} | 
                {% endfor %}
        
    {% endif %}
    {% if t2 %}
        
        
2x2x2
        
            | Tiempo | Scramble | 
                {% for time in t2 %}
                    | {{ time.displayTime }} | {{ time.scramble }} | 
                {% endfor %}
        
    {% endif %}
    {% if t4 %}
        
        
4x4x4
        
            | Tiempo | Scramble | 
                {% for time in t4 %}
                    | {{ time.displayTime }} | {{ time.scramble }} | 
                {% endfor %}
        
    {% endif %}
    {% if t5 %}
        
        
5x5x5
        
            | Tiempo | Scramble | 
                {% for time in t5 %}
                    | {{ time.displayTime }} | {{ time.scramble }} | 
                {% endfor %}
        
    {% endif %}
    {% if t6 %}
        
        
6x6x6
        
            | Tiempo | Scramble | 
                {% for time in t6 %}
                    | {{ time.displayTime }} | {{ time.scramble }} | 
                {% endfor %}
        
    {% endif %}
    {% if t7 %}
        
        
7x7x7
        
            | Tiempo | Scramble | 
                {% for time in t7 %}
                    | {{ time.displayTime }} | {{ time.scramble }} | 
                {% endfor %}
        
    {% endif %}
    {% if tsqr %}
        
        
Square-one
        
            | Tiempo | Scramble | 
                {% for time in tsqr %}
                    | {{ time.displayTime }} | {{ time.scramble }} | 
                {% endfor %}
        
    {% endif %}
    {% if tskw %}
        
        
Skewb
        
            | Tiempo | Scramble | 
                {% for time in tskw %}
                    | {{ time.displayTime }} | {{ time.scramble }} | 
                {% endfor %}
        
    {% endif %}
    {% if tmega %}
        
        
Megaminx
        
            | Tiempo | Scramble | 
                {% for time in tmega %}
                    | {{ time.displayTime }} | {{ time.scramble }} | 
                {% endfor %}
        
    {% endif %}
    {% if tpira %}
        
        
Piraminx
        
            | Tiempo | Scramble | 
                {% for time in tpira %}
                    | {{ time.displayTime }} | {{ time.scramble }} | 
                {% endfor %}
        
    {% endif %}
 
{% endblock %}