feat(moderation): implement semantic activity logs UI and scalable architecture - #2
Open
mnietona wants to merge 3 commits into
Open
feat(moderation): implement semantic activity logs UI and scalable architecture#2mnietona wants to merge 3 commits into
mnietona wants to merge 3 commits into
Conversation
6 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR builds upon the Moderation Dashboard to introduce a clean and scalable Activity Logs system.
Instead of dealing with raw database field names and complex
if/elselogic in the HTML, I refactored theModerationLogmodel using Object-Oriented Programming (OOP) principles. The model now acts as a "translator" that formats its own data, making future additions trivial.Key implementations:
@propertymethods (action_text,action_color,target_text) toModerationLog. If we add new actions in the future (e.g., hiding a document, archiving a course), we just need to update the model. The UI will adapt automatically without touching any HTML.views.pyto stop logging raw, noisy database fields. We now log explicit semantic actions (action_accepter,action_rejeter) for cleaner auditing, and exclude old technical noise from queries.RepresentativeRequestfrom the Django admin and applied the semantic properties to theModerationLogadmin view for a perfectly clean backend.📸 Screenshots
1. Scrollable UI on the Dashboard

2. Cleaned up Django Admin Interface

This PR is stacked on top of the
feat/moderation-dashboardbranch. It should be reviewed and merged after the initial moderation hub PR.