{% extends 'enroll/base.html' %} {% block content %}

Add new Student

{% csrf_token %} {{form.as_p}}

Show Student Information

{% if stu %} {% for st in stu %} {% endfor %}
ID Name Email Password Actions
{{st.id}} {{st.name}} {{st.email}} {{st.password}} Edit
{% csrf_token %}
{% else %}

No Records

{% endif %}
{% endblock content %}