I might be a noob question but... is there a way of using request in models.py?
Something like:
class MyModel (models.Model): User = models.ForeignKey(default=request.user) ...other fields... Or maybe using the post_init method for doing this job.
Thanks.