diff --git a/TealCode/main/templates/main/base.html b/TealCode/main/templates/main/base.html index c732f86..f937fe9 100644 --- a/TealCode/main/templates/main/base.html +++ b/TealCode/main/templates/main/base.html @@ -18,6 +18,8 @@

TealFire

+ +
diff --git a/TealCode/main/templates/main/list.html b/TealCode/main/templates/main/list.html new file mode 100644 index 0000000..965d0de --- /dev/null +++ b/TealCode/main/templates/main/list.html @@ -0,0 +1,33 @@ +{% extends "main/base.html" %} +{% block content %} +
+
+ +

How To 1 in c

+
+
+ +

How To 1 in c

+
+
+ +

How To 1 in c

+
+
+ +

How To 1 in c

+
+
+ +

How To 1 in c

+
+
+ +

How To 1 in c

+
+
+ +

How To 1 in c

+
+
+{% endblock content %} \ No newline at end of file diff --git a/TealCode/main/urls.py b/TealCode/main/urls.py index 1fe59e1..dc6d6c7 100644 --- a/TealCode/main/urls.py +++ b/TealCode/main/urls.py @@ -3,4 +3,5 @@ from . import views urlpatterns = [ path('', views.index, name="main-index"), + path('list/', views.list, name="main-list"), ] diff --git a/TealCode/main/views.py b/TealCode/main/views.py index 126a4bb..127398f 100644 --- a/TealCode/main/views.py +++ b/TealCode/main/views.py @@ -2,3 +2,6 @@ from django.shortcuts import render def index(req): return render(req, "main/index.html") + +def list(req): + return render(req, "main/list.html") \ No newline at end of file