{% extends 'uhepp_vault/base.html' %} {% load pygmentify_tags %} {% block content %}
Collection-ID: {{ collection.id }}
Owner: {{ collection.owner.username }}
{{ collection.description }}
{% if collection.plots.all.count %}This collection is empty
{% endif %}Make sure you've set up an API access token.
import uhepp plots = uhepp.pull_collection({{ collection.pk }}){% endpygmentify %}
import uhepp # Create a histogram or retrieve one from a location file hist = uhepp.from_json("local_file.json") hist.push({{ collection.pk }}){% endpygmentify %} {% endblock %}