Skip to content

Commit

Permalink
2nd commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dwsds committed Nov 1, 2023
1 parent 3bcc216 commit a0c1d51
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified app1/__pycache__/views.cpython-311.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion app1/templates/app1/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Home/title>
<title>Home</title>
</head>
<body>
<h1>Welcome to HomePage!</h1>
Expand Down
2 changes: 1 addition & 1 deletion app1/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
def index(request):
# Your view logic for the 'index' URL pattern
# Example: render an HTML template
return render(request, 'app1/index.html')
return render(request, 'app1/home.html')

def about(request):
# Your view logic for the 'about' URL pattern
Expand Down

0 comments on commit a0c1d51

Please sign in to comment.