mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
9 lines
173 B
Python
9 lines
173 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = "asciidoctor_sandbox"
|
|
|
|
urlpatterns = [
|
|
path("admin-preview/", views.admin_preview, name="admin_preview"),
|
|
]
|