You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the current implementation, we can input comments when using createinitialrevision management command. It would be useful to have the ability to pass user_id/username and date for initial revision while calling the management command.
The text was updated successfully, but these errors were encountered:
so like ./manage.py createinitialrevisions your_app.YourModel --comment="Initial revision."
it woud be useful to have ./manage.py createinitialrevisions your_app.YourModel --comment="Initial revision." --username="some_username" --date="28/09/2020"
That's a good feature. The date arguments would probably want to be:
```
--user=<username>
--date-created=<iso timestamp>
```
to match the model field names.
In the current implementation, we can input comments when using
createinitialrevision
management command. It would be useful to have the ability to passuser_id/username
anddate
for initial revision while calling the management command.The text was updated successfully, but these errors were encountered: