创建 ntools/templates/links/index.html
ntools/ntools/urls.py
from django.urls import path, include
urlpatterns = [
path('', include('links.urls'))
]
创建 ntools/links/urls.py
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
]
ntools/links/views.py
from django.shortcuts import render
def index(request):
return render(request, 'links/index.html')