Commit ac790f6b authored by Deokhyun Lee's avatar Deokhyun Lee

basic url setting is finished. Now bookshelf is handling the url

parent 1d18a84b
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="styleshost" href="styles.css">
<title>{% blocktitle %}</title>
</head>
</html>
\ No newline at end of file
......@@ -14,8 +14,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import path, include
urlpatterns = [
path('', include("bookshelf.urls")),
path('admin/', admin.site.urls),
]
from django.urls import path
from . import views
urlpatterns = [
path('home/', views.index, name = "index"),
path('books/', views.about, name = "about")
]
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment