feat: add is_scheduled column to submission admin#4587
feat: add is_scheduled column to submission admin#4587marcoacierno wants to merge 2 commits intomainfrom
Conversation
Add a new column in the submission admin that shows whether a submission is scheduled in the conference. The column displays a boolean checkmark using Django's admin.display decorator with boolean=True. - Add `is_scheduled` to list_display in SubmissionAdmin - Implement `is_scheduled` method that checks if submission has schedule items - Optimize queryset with prefetch_related for schedule_items to avoid N+1 - Add tests for the new is_scheduled method Closes #4585 Co-authored-by: Marco Acierno <marcoacierno@users.noreply.github.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Adds an No issues found. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4587 +/- ##
==========================================
- Coverage 92.52% 92.46% -0.07%
==========================================
Files 357 359 +2
Lines 10690 10760 +70
Branches 812 816 +4
==========================================
+ Hits 9891 9949 +58
- Misses 687 699 +12
Partials 112 112 🚀 New features to boost your workflow:
|
|
@claude it could be more useful to show when it is scheduled too |
|
Claude finished @marcoacierno's task in 3m 10s —— View job Enhancing is_scheduled column to show scheduled time
Done! The Changes:
|
Update the is_scheduled column to display the actual scheduled datetime(s) instead of just a boolean checkmark. This makes it easier for admins to see when a submission is scheduled without having to open the schedule. Co-authored-by: Marco Acierno <marcoacierno@users.noreply.github.com> Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add a new column in the submission admin that shows whether a submission is scheduled in the conference.
Closes #4585
Generated with Claude Code