rafammpp

Results 3 issues of rafammpp

## Example ```python class Site(models.Model): ... class Category(models.Model): site = models.ForeignKey(Site) class Article(OrderedModel): order_with_respect_to = 'category__site' category = models.ForeignKey(Category) ``` If I do a queryset of Articles, it make an...

From #293 . Retrive the stored data from db and look for changes there before save.

When following the documentation about [merging tags in the admin](https://django-taggit.readthedocs.io/en/latest/admin.html#merging-tags-in-the-admin), It throws a TemplateDoesNotExist error when you try to execute the admin action "Merge selected Tags". The folder "templates" is...