{% extends 'base.html' %} {% block title %}Assignments - LXP{% endblock %} {% block content %}

Assignments

{% if is_trainer %} Create Assignment {% endif %}
{% for assignment in assignments %}
{{ assignment.title }}
{{ assignment.get_assignment_type_display }}

{{ assignment.description|truncatewords:30 }}

Due: {{ assignment.due_date|date:"M d, Y H:i" }} {% if now > assignment.due_date %} Closed {% endif %}
Marks: {{ assignment.total_marks }}
Questions: {{ assignment.questions.count }}
{% empty %}

No assignments available

{% if is_trainer %}Create your first assignment to get started.{% else %}Check back later for new assignments.{% endif %}

{% if is_trainer %} Create First Assignment {% endif %}
{% endfor %}
{% endblock %}