{% extends 'base.html' %} {% load static %} {% load crispy_forms_tags %} {% block title %} Update {{ collection }} {% endblock %} {% block javascript %} {% include "ui/credential_warnings_snippet.js" %} {% endblock javascript %} {% block content_header %}
{% endblock %} {% block content %}
{% crispy form %}
{% if has_seeds_list %}

Seeds

{% for seed in seed_list %} {% endfor %}
Token uid Next harvest Active
{{ seed.token }} {{ seed.uid }} {{ seed.is_active|yesno:"Yes,No" }}
{% endif %} {% endblock %}