[PR #900] [MERGED] Rack reservations #12130

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/900
Author: @jeremystretch
Created: 2/16/2017
Status: Merged
Merged: 2/16/2017
Merged by: @jeremystretch

Base: developHead: rack_reservations


📝 Commits (5)

  • 6b53570 Initial work on rack reservations
  • ac2bf91 Added views for rack reservations
  • 5c8c0e5 Implemented ArrayFieldSelectMultiple form widget
  • 9da2b8e Implemented API endpoints for rack reservations
  • 6fec098 Tweaked the database migration

📊 Changes

16 files changed (+314 additions, -13 deletions)

View changed files

📝 netbox/dcim/admin.py (+6 -1)
📝 netbox/dcim/api/serializers.py (+22 -3)
📝 netbox/dcim/api/urls.py (+4 -0)
📝 netbox/dcim/api/views.py (+23 -1)
📝 netbox/dcim/filters.py (+13 -1)
📝 netbox/dcim/forms.py (+33 -4)
netbox/dcim/migrations/0026_add_rack_reservations.py (+33 -0)
📝 netbox/dcim/models.py (+46 -0)
📝 netbox/dcim/tests/test_apis.py (+1 -0)
📝 netbox/dcim/urls.py (+5 -0)
📝 netbox/dcim/views.py (+36 -1)
📝 netbox/project-static/css/base.css (+9 -0)
📝 netbox/templates/dcim/inc/rack_elevation.html (+9 -2)
📝 netbox/templates/dcim/rack.html (+45 -0)
📝 netbox/utilities/forms.py (+21 -0)
📝 netbox/utilities/templatetags/helpers.py (+8 -0)

📄 Description

Closes #36


🔄 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/900 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 2/16/2017 **Status:** ✅ Merged **Merged:** 2/16/2017 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `develop` ← **Head:** `rack_reservations` --- ### 📝 Commits (5) - [`6b53570`](https://github.com/netbox-community/netbox/commit/6b535700391e4722f2cda6ebbeea714e336855d4) Initial work on rack reservations - [`ac2bf91`](https://github.com/netbox-community/netbox/commit/ac2bf91a871e4474cd27438440a8166b75197e68) Added views for rack reservations - [`5c8c0e5`](https://github.com/netbox-community/netbox/commit/5c8c0e543fdf899d127c7604b84772295a0d5dce) Implemented ArrayFieldSelectMultiple form widget - [`9da2b8e`](https://github.com/netbox-community/netbox/commit/9da2b8e587e9f62f0b236c3bb8a202add8229c1d) Implemented API endpoints for rack reservations - [`6fec098`](https://github.com/netbox-community/netbox/commit/6fec098abc84c1291187cb744d764adee3d5a375) Tweaked the database migration ### 📊 Changes **16 files changed** (+314 additions, -13 deletions) <details> <summary>View changed files</summary> 📝 `netbox/dcim/admin.py` (+6 -1) 📝 `netbox/dcim/api/serializers.py` (+22 -3) 📝 `netbox/dcim/api/urls.py` (+4 -0) 📝 `netbox/dcim/api/views.py` (+23 -1) 📝 `netbox/dcim/filters.py` (+13 -1) 📝 `netbox/dcim/forms.py` (+33 -4) ➕ `netbox/dcim/migrations/0026_add_rack_reservations.py` (+33 -0) 📝 `netbox/dcim/models.py` (+46 -0) 📝 `netbox/dcim/tests/test_apis.py` (+1 -0) 📝 `netbox/dcim/urls.py` (+5 -0) 📝 `netbox/dcim/views.py` (+36 -1) 📝 `netbox/project-static/css/base.css` (+9 -0) 📝 `netbox/templates/dcim/inc/rack_elevation.html` (+9 -2) 📝 `netbox/templates/dcim/rack.html` (+45 -0) 📝 `netbox/utilities/forms.py` (+21 -0) 📝 `netbox/utilities/templatetags/helpers.py` (+8 -0) </details> ### 📄 Description Closes #36 --- <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:19:47 +01:00
adam closed this issue 2025-12-29 22:19:47 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12130