{% extends 'main/base.html' %} {% load static %} {% block scripts %} {% endblock scripts %} {% block title %} Home {% endblock %} {% block loggedin %}
{% if courses %} {% for each in courses %}
...
{{ each.name }}

{{ each.course_id }}

{% endfor %} {% endif %} {% if request.user.userprofile.student_id != "" %}
New Course

If you have an access code that you received from your instructor, enter it here.

{% endif %} {% if request.user.userprofile.instructor_id != "" %}
Create Course

Press here to create a new course.

{% endif %}
{% if request.user.userprofile.student_id != "" %}

New Questions

Today
{{ today }}
{% if questions_to_display %} {% for q, noti in questions_to_display.items %}
{{ q.text }}
{{ q.section.course }}: {{ q.section }}
Set Reminder: {{noti.time_to_send}}
{% endfor %} {% endif %}
{% endif %}
{% endblock %} {% block notloggin %}

Learning.

One question, at a time

  • LOGIN
  • Scheduled reminders for questions help learning by building consistency

    Questions are not timed or graded, for a stress-free learning environment

    Accelerate your learning through instant feedback on responses.

    {% endblock %}