{% extends "base.html" %} {% block sidebar %} {% include "admin/components/sidebar.html" %} {% endblock %} {% block content %}

Upload

{% csrf_token %}
* upload .csv file
{% if messages %}
    {% for message in messages %}
  • {{ message }}
  • {% endfor %}
{% endif %} {% if form.errors %} {% for field in form %} {% for error in field.errors %}
{{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% endif %}
Note:
1. Use this form to upload only alumni data.
2. The permissions to all new users will be set automatically.
3. The input file should have .csv extension.
4. The following format should be followed:
Sl USN Name Phone RV Email Email Department Year Join Year Pass
1 1RV17IS006 Anup Kumar P 9551515261 anup@rvce.edu.in anup@gmail.com ISE yyyy-mm-dd yyyy-mm-dd
2 ... ... ... ... ... ... ... ...
3 ... ... ... ... ... ... ... ...
{% endblock %}