I want to save result of post.get_absolute_url() in my Django model as Field.
def get_absolute_url(self):
return reverse('post_detail', args=[self.publish.year,
self.publish.month, self.publish.day, self.slug])
For example:
absolute_url = models.CharField(...'result of post.get_absolute_url()'...)
.
Is there any way to do this? Thanks.