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

Upload

{% csrf_token %}
{% 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 STUDENT NUMBER STUDENT ID USN STUDENT FULL NAME STUDENT CONTACT STUDENT EMAIL RVCE Mail ID
1 1000014887 RVCE19BIS001 1RV19IS046 SAHIL SHARMA 7889442618 sahilsharma15032002@gmail.com sahilsharma.is19@rvce.edu.in
2 ... ... ... ... ... ... ...
3 ... ... ... ... ... ... ...
{% endblock %}