{% extends 'base.html' %} {% block content %}
{% if listening %}

듣기 점수

{% for score in listening %} {% endfor %}
날짜점수
{{ score.0 }}{{ score.1 }}
{% endif %}
{% if reading %}

읽기 점수

{% for score in reading %} {% endfor %}
날짜점수
{{ score.0 }}{{ score.1 }}
{% endif %}
{% if voca %}

단어 점수

{% for score in voca %} {% endfor %}
날짜점수
{{ score.0 }}{{ score.1 }}
{% endif %}
{% if error %}

에러

에러 메시지
{{ error }}
{% endif %}
{% if message_box %}

알람 더보기

{% for message in message_box %} {% if message.2 == 1 %}
New
{{ message.1|safe }} {{ message.0|safe }}
{% endif %} {% if message.2 == 0 %}
{{ message.1|safe }} {{ message.0|safe }}
{% endif %} {% endfor %} {% endif %}
{% endblock %}