1👍
✅
As the Django CMS docs stated here: http://docs.django-cms.org/en/2.4.2/extending_cms/app_integration.html#application-and-instance-namespaces, the app namespace needs to be specified in order to successfully reverse urls. So something like this should work:
{% url 'myapp_name:horoscope_detail' capri 0 %}
Source:stackexchange.com