ticon-file-directory"> supports-preserve-symlinks-flag 30f7226d9a first commit 2 yıl önce tailwind-color-palette 30f7226d9a first commit 2 yıl önce tailwindcss 30f7226d9a first commit 2 yıl önce thenify 30f7226d9a first commit 2 yıl önce thenify-all 30f7226d9a first commit 2 yıl önce to-regex-range 30f7226d9a first commit 2 yıl önce tr46 30f7226d9a first commit 2 yıl önce ts-interface-checker 30f7226d9a first commit 2 yıl önce uglify-js 30f7226d9a first commit 2 yıl önce underscore 30f7226d9a first commit 2 yıl önce upper-case 30f7226d9a first commit 2 yıl önce util-deprecate 30f7226d9a first commit 2 yıl önce valid-data-url 30f7226d9a first commit 2 yıl önce web-resource-inliner 30f7226d9a first commit 2 yıl önce webidl-conversions 30f7226d9a first commit 2 yıl önce whatwg-url 30f7226d9a first commit 2 yıl önce wrap-ansi 30f7226d9a first commit 2 yıl önce wrappy 30f7226d9a first commit 2 yıl önce y18n 30f7226d9a first commit 2 yıl önce yallist 30f7226d9a first commit 2 yıl önce yaml 30f7226d9a first commit 2 yıl önce yargs 30f7226d9a first commit 2 yıl önce yargs-parser 30f7226d9a first commit 2 yıl önce .yarn-integrity 30f7226d9a first commit 2 yıl önce init layout · 4822d7acf2 - Gogs: Simplico Git Service
Kaynağa Gözat

init layout

Prach Pongpanich 3 yıl önce
ebeveyn
işleme
4822d7acf2
3 değiştirilmiş dosya ile 71 ekleme ve 15 silme
  1. 1 1
      app/course/views.py
  2. 62 14
      app/templates/base.html
  3. 8 0
      app/templates/course/list.html

+ 1 - 1
app/course/views.py

@@ -3,4 +3,4 @@ from django.shortcuts import render
3 3
 # Create your views here.
4 4
 
5 5
 def index(request):
6
-   return render(request, 'base.html')
6
+   return render(request, 'course/list.html')

Dosya farkı çok büyük olduğundan ihmal edildi
+ 62 - 14
app/templates/base.html


+ 8 - 0
app/templates/course/list.html

@@ -0,0 +1,8 @@
1
+{% extends 'base.html' %}                                                          
2
+{% load static %}
3
+{% block content %}
4
+
5
+<div class="text-xl font-semibold inline-block">title</div>
6
+<div class="divider mt-2"></div>
7
+
8
+{% endblock %}