Configuration

This section contains general configuration instructions and some tips

Variables

Change the variables in settings.py of your Django project.

  • PROGRESSBAR_DYNAMIC_UPDATE

    The variable controls behavior of ProgressBar.

    If it is set to True, the state of the progressbar is fetched on every attribute invocation. Not recommended in most cases, creates DB overhead.

    Defaults to False.

  • PROGRESSBAR_DESTROY_ON_EXIT

    Set to True to destroy DB object on progressbar destruction.

    Defaults to False.

  • PROGRESSBAR_DEFAULT_TOTAL

    Default value for total progressbar attribute.

    Defaults to 100.