{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}Import from Google Drive - {{ auction }}{% endblock %} {% block content %} {% include 'auction_ribbon.html' %}
Import Users from Google Drive

Got your club roster in a shared Google sheet? You can sync it quickly and automatically without needing to export and import a CSV. Put some or all of these as your column names:

Note that this is a one-way sync - we'll pull data from the Google sheet but we won't write to it.
If you're using this, you should probably not enter or edit users manually, as your changes may be overwritten on the next sync.

{% csrf_token %}
Make sure your Google Sheet is shared with "anyone with the link can view"
Cancel
{% if auction.google_drive_link %}

Current Google Drive link: {{ auction.google_drive_link|urlize }}
{% if auction.last_sync_time %} Last synced: {{ auction.last_sync_time|timesince }} ago {% else %} Last synced: Never {% endif %}

{% endif %} {% endblock %}