8 lines
144 B
Python
8 lines
144 B
Python
|
|
||
|
from django.urls import path
|
||
|
from .views import *
|
||
|
urlpatterns = [
|
||
|
# 图片墙
|
||
|
path('<int:id>/<int:page>.html', album, name='album'),
|
||
|
]
|