{% extends 'taskdatabase/base.html' %} {% block myBlock %}

Bulk Edit - {{ count }} tasks

  • null or empty values mean that the values for that field differ per task, you can override them by filling in a value (and check the box).
  • Only 'checked' fields will be updated

  • {% csrf_token %} {{ form.non_field_errors }} {% for field in form %} {% if not field.name in update_fields %} {% endif %} {% endfor %}
    {% with field.name|add:'_update' as update_field_name %} {% for update_field in form %} {% if update_field.name == update_field_name %} {{ update_field }} {% endif %} {% endfor %} {% endwith %}   {{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %}

    Cancel 

    {% endblock %}