Skip to content

Commit ef0d097

Browse files
committed
Updates
1 parent fe0dc82 commit ef0d097

File tree

3 files changed

+7
-5
lines changed
  • Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/first_project/first_app

3 files changed

+7
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
h1{
2-
color: red;
2+
color: blue;
33
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#abcc{
2-
color: blue;
2+
color: purple;
33
}
44
table {
55
border-collapse: collapse;
@@ -8,6 +8,7 @@ table, th, td{
88
border: 2px solid black;
99
}
1010

11-
h3{
12-
color: red;
11+
h3, h2{
12+
color: green;
1313
}
14+

Section 1 - Course Introduction/DJANGO_COURSE_2.xx/15-Django_Level_Two/first_project/first_app/templates/first_app/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
<head>
66
<meta charset="utf-8">
77
<title>Django Level Two</title>
8-
<link rel="stylesheet" href="{% static "first_app/css/mystyle.css" %}">
8+
<link rel="stylesheet" href="{% static "first_app/css/style.css" %}">
99
</head>
1010
<body>
1111
<h1 id='abcc'>Hi, welcome to Django Level Two!</h1>
1212
<h2>Here are your access records:</h2>
1313
<h3>Testing</h3>
14+
1415
<div class="djangtwo">
1516
{% if access_records %}
1617
<table>

0 commit comments

Comments
 (0)