diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index be2aacff5..b3dd583ca 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -14,7 +14,7 @@ body: attributes: label: NetBox version description: What version of NetBox are you currently running? - placeholder: v3.5.1 + placeholder: v3.5.4 validations: required: true - type: dropdown diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 1f8fdebd4..e6a5e76c2 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -3,10 +3,13 @@ blank_issues_enabled: false contact_links: - name: 📖 Contributing Policy url: https://github.com/netbox-community/netbox/blob/develop/CONTRIBUTING.md - about: "Please read through our contributing policy before opening an issue or pull request" + about: "Please read through our contributing policy before opening an issue or pull request." - name: ❓ Discussion url: https://github.com/netbox-community/netbox/discussions - about: "If you're just looking for help, try starting a discussion instead" + about: "If you're just looking for help, try starting a discussion instead." + - name: 💡 Plugin Idea + url: https://plugin-ideas.netbox.dev + about: "Have an idea for a plugin? Head over to the ideas board!" - name: 💬 Community Slack - url: https://netdev.chat/ - about: "Join #netbox on the NetDev Community Slack for assistance with installation issues and other problems" + url: https://netdev.chat + about: "Join #netbox on the NetDev Community Slack for assistance with installation issues and other problems." diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index fcb3516b4..bd93001e7 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -14,7 +14,7 @@ body: attributes: label: NetBox version description: What version of NetBox are you currently running? - placeholder: v3.5.1 + placeholder: v3.5.4 validations: required: true - type: dropdown diff --git a/README.md b/README.md index 480f0f856..6e2b34fb8 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,10 @@
The premiere source of truth powering network automation
+Restore configuration #{{ object.pk }} from {{ object.created }}?
- -Parameter | -Current Value | -New Value | -- |
---|---|---|---|
{{ param }} | -{{ current }} | -{{ new }} | -{% if current != new %} |
-
{{ context_data|pprint }}+
{{ context_data|pprint }}+
MAC Address | -{{ object.mac_address|placeholder }} | +{{ object.mac_address|placeholder }} | |||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
WWN | -{{ object.wwn|placeholder }} | +{{ object.wwn|placeholder }} | |||||||||||||||||||||||||||||||||||||||||||||||||||||
VRF | diff --git a/netbox/templates/dcim/rack.html b/netbox/templates/dcim/rack.html index 52b5d4bfe..01aeacff1 100644 --- a/netbox/templates/dcim/rack.html +++ b/netbox/templates/dcim/rack.html @@ -101,6 +101,12 @@Height | {{ object.u_height }}U ({% if object.desc_units %}descending{% else %}ascending{% endif %}) | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Starting Unit | ++ {{ object.starting_unit }} + | +||||||||||||||||||||||||||||||||||||||||||||||||||||||
Outer Width |
diff --git a/netbox/templates/dcim/rack_edit.html b/netbox/templates/dcim/rack_edit.html
index 4bbd72405..a1ebb7531 100644
--- a/netbox/templates/dcim/rack_edit.html
+++ b/netbox/templates/dcim/rack_edit.html
@@ -71,6 +71,7 @@
{% render_field form.mounting_depth %}
{% render_field form.desc_units %}
+ {% render_field form.starting_unit %}
{% if form.custom_fields %}
diff --git a/netbox/templates/extras/configrevision.html b/netbox/templates/extras/configrevision.html
new file mode 100644
index 000000000..1c7eeb2dd
--- /dev/null
+++ b/netbox/templates/extras/configrevision.html
@@ -0,0 +1,200 @@
+{% extends 'generic/object.html' %}
+{% load buttons %}
+{% load custom_links %}
+{% load helpers %}
+{% load perms %}
+{% load plugins %}
+{% load static %}
+
+{% block breadcrumbs %}
+{% endblock %}
+
+{% block controls %}
+
+
+{% endblock controls %}
+
+{% block content %}
+
+ {% plugin_buttons object %}
+
+
+ {% custom_links object %}
+
+
+
+{% endblock %}
diff --git a/netbox/templates/extras/configrevision_restore.html b/netbox/templates/extras/configrevision_restore.html
new file mode 100644
index 000000000..ac22f8cbd
--- /dev/null
+++ b/netbox/templates/extras/configrevision_restore.html
@@ -0,0 +1,88 @@
+{% extends 'base/layout.html' %}
+{% load helpers %}
+{% load buttons %}
+{% load perms %}
+{% load static %}
+
+{% block title %}Restore: {{ object }}{% endblock %}
+
+{% block subtitle %}
+
+
+
+
+
+ Rack Elevation+
+
+
+
+
+ Power+
+
+
+
+
+ IPAM+
+
+
+
+
+ Security+
+
+
+
+
+
+ Banners+
+
+
+
+
+
+
+
+ Pagination+
+
+
+
+
+ Validation+
+
+
+
+
+ User Preferences+
+
+
+
+
+ Miscellaneous+
+
+
+
+
+ Config Revision+
+
+
+ Created {{ object.created|annotated_date }}
+
+{% endblock %}
+
+{% block header %}
+
+ {{ block.super }}
+{% endblock header %}
+
+{% block controls %}
+
+
+{% endblock controls %}
+
+{% block tabs %}
+
+{% endblock %}
+
+{% block content %}
+
+ {% if request.user|can_delete:job %}
+ {% delete_button job %}
+ {% endif %}
+
+
+
+
+
+
+{% endblock content %}
+
+{% block modals %}
+{% endblock modals %}
diff --git a/netbox/templates/extras/dashboard/widgets/objectcounts.html b/netbox/templates/extras/dashboard/widgets/objectcounts.html
index d0e604c9a..8b68dc166 100644
--- a/netbox/templates/extras/dashboard/widgets/objectcounts.html
+++ b/netbox/templates/extras/dashboard/widgets/objectcounts.html
@@ -1,10 +1,8 @@
-{% load helpers %}
-
{% if counts %}
+
+
- {% for model, count in counts %}
+ {% for model, count, url in counts %}
{% if count != None %}
-
+
{{ model|meta:"verbose_name_plural"|bettertitle }}
{{ count }}diff --git a/netbox/templates/extras/tag.html b/netbox/templates/extras/tag.html index 6e4c5aee9..e5aa5cc75 100644 --- a/netbox/templates/extras/tag.html +++ b/netbox/templates/extras/tag.html @@ -43,9 +43,23 @@
-
+ - Tagged Item Types -+Allowed Object Types+
+
+
+ Tagged Item Types |