[Answer]-Django entry creating. Method in views/other file or as a method of model class

1👍

Option 1 is, in my opinion, better practice. add_article is unnecessary, because you can set the date by using the auto_now property of the date field, and everything else is already built-in. You’ll have less code and less maintenance.

Leave a comment