{% 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 student 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.No USN FULL NAME PHONE RVCE Mail ID EMAIL BRANCH YEAR JOIN
1 1RV20IS091 Avinash 7889442618 avinash.is19@rvce.edu.in avinash15032002@gmail.com ISE yyyy-mm-dd
2 ... ... ... ... ... ... ...
3 ... ... ... ... ... ... ...
{% endblock %}