{% extends 'base.html' %} {% load form_helpers %} {% block content %}
{% csrf_token %}

{% block title %}Example Plugin Configuration{% endblock title %}

A plugin can implement this page if it has various configuration options that make sense to view and/or update via the web UI (as opposed to configuring them under PLUGINS_CONFIG in nautobot_config.py). The below is just a simple example.

{% block form %}
Configuration Options
{% block form_fields %} {% render_form form %} {% endblock %}
{% endblock form %}
{% endblock content %}