Changes between Initial Version and Version 1 of Ticket #36972
- Timestamp:
- Mar 5, 2026, 4:23:42 PM (2 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36972
- Property Cc added
- Property Owner set to
- Property Triage Stage Unreviewed → Accepted
- Property Status new → assigned
- Property Summary Improve password prompt wording in createsuperuser management command → Provide keyboard feedback in createsuperuser and changepassword commands
- Property Type Cleanup/optimization → New feature
-
Ticket #36972 – Description
initial v1 1 1 When running `python manage.py createsuperuser`, the password prompt currently shows: 2 ``` 2 {{{ 3 3 Password: 4 ``` 4 }}} 5 5 Nothing is printed while typing (for security), but many beginners might think the terminal has frozen or the command isn’t working, since there’s no hint that the input is hidden. 6 6 7 7 **Suggestion:** 8 8 Update the password prompt in the `createsuperuser` management command to something clearer, like: 9 ``` 9 {{{ 10 10 Password (input hidden): 11 ``` 11 }}} 12 12 or 13 ``` 13 {{{ 14 14 Password: [input hidden] 15 ``` 15 }}} 16 16 17 17 **Benefit:**