[Answer]-Overriding get_absolute_url from a model for the sitemap

1👍

Instead of abstraction, it would be better to use proxy models in this case.

So the subclassed models would have

class Meta:
    proxy = True

More info on proxy models here.

Leave a comment