[PR #6659] [MERGED] Closes #6646: Move extras out of Django admin UI #13151

Closed
opened 2025-12-29 22:25:41 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/6659
Author: @jeremystretch
Created: 6/24/2021
Status: Merged
Merged: 6/24/2021
Merged by: @jeremystretch

Base: featureHead: 6466-replace-django-admin


📝 Commits (6)

  • b017927 Add UI views for custom fields
  • 276ded0 Add UI views for custom links
  • 10cbbee Add UI views for export templates
  • 4e0b795 Add UI views for webhooks
  • 036a068 Update extras documentation
  • 6cc4f27 Tables cleanup

📊 Changes

29 files changed (+1403 additions, -236 deletions)

View changed files

📝 docs/additional-features/webhooks.md (+1 -1)
📝 docs/configuration/optional-settings.md (+3 -3)
📝 docs/customization/custom-fields.md (+1 -1)
📝 docs/customization/custom-links.md (+3 -3)
📝 docs/customization/custom-scripts.md (+0 -0)
📝 docs/customization/custom-validation.md (+0 -0)
📝 docs/customization/export-templates.md (+1 -1)
📝 docs/customization/reports.md (+0 -0)
📝 docs/development/models.md (+2 -2)
📝 docs/release-notes/version-2.6.md (+1 -1)
📝 docs/release-notes/version-3.0.md (+1 -1)
📝 mkdocs.yml (+7 -6)
📝 netbox/extras/admin.py (+1 -195)
📝 netbox/extras/forms.py (+377 -3)
netbox/extras/migrations/0061_extras_change_logging.py (+51 -0)
📝 netbox/extras/models/customfields.py (+8 -3)
📝 netbox/extras/models/models.py (+15 -3)
📝 netbox/extras/tables.py (+91 -1)
📝 netbox/extras/tests/test_views.py (+154 -2)
📝 netbox/extras/urls.py (+55 -5)

...and 9 more files

📄 Description

Closes: #6466

Adds UI views and tests for:

  • Custom fields
  • Custom links
  • Export templates
  • Webhooks

Also removes the obsolete admin UI sections for all of the above.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbox-community/netbox/pull/6659 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 6/24/2021 **Status:** ✅ Merged **Merged:** 6/24/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `feature` ← **Head:** `6466-replace-django-admin` --- ### 📝 Commits (6) - [`b017927`](https://github.com/netbox-community/netbox/commit/b017927c69aa0727318a9dafdb6d0f39597a76f9) Add UI views for custom fields - [`276ded0`](https://github.com/netbox-community/netbox/commit/276ded0119d741c834db70ebacd70734e14c6f23) Add UI views for custom links - [`10cbbee`](https://github.com/netbox-community/netbox/commit/10cbbee9472b39122da73cfe501d871b3234ddc5) Add UI views for export templates - [`4e0b795`](https://github.com/netbox-community/netbox/commit/4e0b795a3ce37db38f2adba0c8b9063d41e02ef5) Add UI views for webhooks - [`036a068`](https://github.com/netbox-community/netbox/commit/036a068b832f1ba1db3cab09f5ce07d49b62781f) Update extras documentation - [`6cc4f27`](https://github.com/netbox-community/netbox/commit/6cc4f27ee306b2779467bb360c538d409e960383) Tables cleanup ### 📊 Changes **29 files changed** (+1403 additions, -236 deletions) <details> <summary>View changed files</summary> 📝 `docs/additional-features/webhooks.md` (+1 -1) 📝 `docs/configuration/optional-settings.md` (+3 -3) 📝 `docs/customization/custom-fields.md` (+1 -1) 📝 `docs/customization/custom-links.md` (+3 -3) 📝 `docs/customization/custom-scripts.md` (+0 -0) 📝 `docs/customization/custom-validation.md` (+0 -0) 📝 `docs/customization/export-templates.md` (+1 -1) 📝 `docs/customization/reports.md` (+0 -0) 📝 `docs/development/models.md` (+2 -2) 📝 `docs/release-notes/version-2.6.md` (+1 -1) 📝 `docs/release-notes/version-3.0.md` (+1 -1) 📝 `mkdocs.yml` (+7 -6) 📝 `netbox/extras/admin.py` (+1 -195) 📝 `netbox/extras/forms.py` (+377 -3) ➕ `netbox/extras/migrations/0061_extras_change_logging.py` (+51 -0) 📝 `netbox/extras/models/customfields.py` (+8 -3) 📝 `netbox/extras/models/models.py` (+15 -3) 📝 `netbox/extras/tables.py` (+91 -1) 📝 `netbox/extras/tests/test_views.py` (+154 -2) 📝 `netbox/extras/urls.py` (+55 -5) _...and 9 more files_ </details> ### 📄 Description ### Closes: #6466 Adds UI views and tests for: - Custom fields - Custom links - Export templates - Webhooks Also removes the obsolete admin UI sections for all of the above. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 22:25:41 +01:00
adam closed this issue 2025-12-29 22:25:41 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13151