SinkDark/myblog/interflow/urls.py
2024-09-17 17:30:58 +08:00

8 lines
144 B
Python

from django.urls import path
from .views import *
urlpatterns = [
# 留言板
path('<int:id>/<int:page>.html', board, name='board'),
]