Oleg Kleshchunov
Results
2
comments of
Oleg Kleshchunov
Very inefficient solution: ```python from django.utils.functional import lazy def parent_host(): from django.contrib.sites.models import Site site = Site.objects.get_current() return site.domain PARENT_HOST = lazy(parent_host, str)() ```
Hi! Thanks for your PR. But I think we don't need this workaround. You just can create a proxy model for `FlatPage` and inherit it from `SeoTagsMixin`. And register this...