{% extends 'carers/dashboard_layout.html' %} {% load widget_tweaks static %} {% block content %}
{% csrf_token %}

Upload users via .xlsx file

  1. 1. Download this file. Click Here
  2. 2. Add staff or admins. (Have separate files for staff and admin)
  3. 3. Add first name, last name and email. Do not change row 1, do not add extra columns.
  4. 4. Use the form below to upload the file.

{{ form.file|add_class:"w-full p-2 rounded-md border-indigo-950 border cursor-pointer duration-300 hover:opacity-60 overflow-hidden" }} {% if form.errors %}
    {% for field in form %} {% for error in field.errors %}
  • {{ error }}
  • {% endfor %} {% endfor %}
{% endif %}
{% endblock %}