{% extends "base.html" %} {% block title %}Forms - University ATS{% endblock %} {% block content %}
{% if page_obj %}
{% for form in page_obj %}
{{ form.title }}
Active

{{ form.description|truncatewords:15 }}

{{ form.created_by.username }}
{{ form.created_at|date:"M d, Y" }}
{{ form.submissions.count }} submissions
{% endfor %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}

No forms found

Create your first form to get started.

Create Form
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}