/django_impact

django app with creative time impact theme

Primary LanguageHTMLMIT LicenseMIT

django-impact

django app with creative-tim impact design system

Add to:

  • app/settings.py
INSTALLED_APPS = [
# ...
    'django_impact',
# ...
]
  • app/urls.py
from django.urls import path, include
# ...
urlpatterns = [
    # ...
    path('impact/', include('django_impact.urls')),
    # ...
]