{% extends "layout.main.html" %} {% block content %}

Credential overview

Overview of generated credentials to be used for accessing your localshop. Disabled credentials will receive a 403 error.

Credentials are simple UUIDs that you can use as Basic Auth credentials when using your localshop via a pip requirement file. Simply specify the index with

pip install -i http://<access key>:<secret_key>@{{ current_url }}/simple/ ...

Warning: Please be aware that those credentials are transmitted unencrypted over http unless you setup your localshop instance to run on a server that serves pages via https.

Create

{% for credential in credential_list %} {% endfor %}
Access Key Secret Key Comment Disabled Actions
{{ credential.access_key }} show {{ credential.comment }} {{ credential.deactivated|default:'n/a' }} {% if credential.deactivated %}  enable {% else %}  disable {% endif %} |  edit |  delete
{% endblock %}