{% extends "admin/base_site.html" %} {% load i18n admin_urls static admin_modify %} {% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ title }}

You are about to update {{ queryset.count }} compute plan(s). Please select the fields you want to update:

{% csrf_token %} {% for obj in queryset %} {% endfor %}
{{ form.active }} {% if form.active.help_text %}
{{ form.active.help_text }}
{% endif %}
{{ form.term }} {% if form.term.help_text %}
{{ form.term.help_text }}
{% endif %}
{{ form.group }} {% if form.group.help_text %}
{{ form.group.help_text }}
{% endif %}
{{ form.valid_from }} {% if form.valid_from.help_text %}
{{ form.valid_from.help_text }}
{% endif %}
{{ form.valid_to }} {% if form.valid_to.help_text %}
{{ form.valid_to.help_text }}
{% endif %}
Cancel
{% endblock %}