8000 Merge branch 'github:main' into main · martcpp/codespaces-django@eb08367 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit eb08367

Browse files
Merge branch 'github:main' into main
2 parents 99064b5 + 5c09f63 commit eb08367

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

hello_world/core/views.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
from django.shortcuts import render
22

33
def index(request):
4-
return render(
5-
request,
6-
"index.html",
7-
{
8-
"title": "Django example",
9-
},
10-
)
4+
context = {
5+
"title": "Django example",
6+
}
7+
return render(request, "index.html", context)

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Django==4.1.7
1+
Django==4.1.10
22
django-browser-reload==1.6.0

0 commit comments

Comments
 (0)
0