We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01ce4eb commit 4a29c53Copy full SHA for 4a29c53
src/reactify/urls.py
@@ -20,6 +20,7 @@
20
21
urlpatterns = [
22
path('', TemplateView.as_view(template_name='react.html')),
23
+ path('walking', TemplateView.as_view(template_name='walking.html')),
24
re_path(r'^posts/', TemplateView.as_view(template_name='react.html')),
25
path('admin/', admin.site.urls),
26
path('api/posts/', include('posts.urls'))
src/templates/walking.html
@@ -0,0 +1,5 @@
1
+{% extends "base.html" %}
2
+
3
+{% block content %}
4
+ <div id='reactify-django-ui'>Loading...</div>
5
+{% endblock content %}
0 commit comments