aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/resources/urls.py
blob: cb33a9d701ee34eef5108e297fc448f87eea658d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
from django_distill import distill_path

from pydis_site.apps.resources.views import ResourceView

app_name = "resources"
urlpatterns = [
    # Using `distill_path` instead of `path` allows this to be available
    # in static preview builds.
    distill_path("", ResourceView.as_view(), name="index"),
    distill_path("<resource_type>/", ResourceView.as_view(), name="index"),
]