[PR #2243] [CLOSED] Add activity log functionality #12343

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/2243
Author: @mpboom
Created: 7/16/2018
Status: Closed

Base: developHead: activity-log


📝 Commits (1)

  • 9792130 Add activity log functionality

📊 Changes

15 files changed (+282 additions, -1 deletions)

View changed files

netbox/activity/__init__.py (+0 -0)
netbox/activity/apps.py (+5 -0)
netbox/activity/forms.py (+15 -0)
netbox/activity/migrations/0001_initial.py (+36 -0)
netbox/activity/migrations/__init__.py (+0 -0)
netbox/activity/models.py (+26 -0)
netbox/activity/urls.py (+9 -0)
netbox/activity/views.py (+61 -0)
📝 netbox/netbox/settings.py (+1 -0)
📝 netbox/netbox/urls.py (+2 -0)
netbox/templates/activity/addComment.html (+83 -0)
netbox/templates/activity/deleteComment.html (+6 -0)
netbox/templates/activity/displayActivity.html (+34 -0)
📝 netbox/templates/dcim/inc/device_header.html (+3 -0)
📝 netbox/templates/inc/nav_menu.html (+1 -1)

📄 Description

The new 'acivity' app adds the possibility to
attach log items to devices. When viewing a device,
a new 'Activity' tab appears, where users can add log
items. These items can then be viewed and deleted by
other users. This way a device builds up an activity
log - this might be useful for, for example, keeping
track of how a device is doing.


🔄 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/2243 **Author:** [@mpboom](https://github.com/mpboom) **Created:** 7/16/2018 **Status:** ❌ Closed **Base:** `develop` ← **Head:** `activity-log` --- ### 📝 Commits (1) - [`9792130`](https://github.com/netbox-community/netbox/commit/9792130819523948a30dce672bb489dc54da2770) Add activity log functionality ### 📊 Changes **15 files changed** (+282 additions, -1 deletions) <details> <summary>View changed files</summary> ➕ `netbox/activity/__init__.py` (+0 -0) ➕ `netbox/activity/apps.py` (+5 -0) ➕ `netbox/activity/forms.py` (+15 -0) ➕ `netbox/activity/migrations/0001_initial.py` (+36 -0) ➕ `netbox/activity/migrations/__init__.py` (+0 -0) ➕ `netbox/activity/models.py` (+26 -0) ➕ `netbox/activity/urls.py` (+9 -0) ➕ `netbox/activity/views.py` (+61 -0) 📝 `netbox/netbox/settings.py` (+1 -0) 📝 `netbox/netbox/urls.py` (+2 -0) ➕ `netbox/templates/activity/addComment.html` (+83 -0) ➕ `netbox/templates/activity/deleteComment.html` (+6 -0) ➕ `netbox/templates/activity/displayActivity.html` (+34 -0) 📝 `netbox/templates/dcim/inc/device_header.html` (+3 -0) 📝 `netbox/templates/inc/nav_menu.html` (+1 -1) </details> ### 📄 Description The new 'acivity' app adds the possibility to attach log items to devices. When viewing a device, a new 'Activity' tab appears, where users can add log items. These items can then be viewed and deleted by other users. This way a device builds up an activity log - this might be useful for, for example, keeping track of how a device is doing. --- <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:20:59 +01:00
adam closed this issue 2025-12-29 22:20:59 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12343