Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rrrrrrmb committed Mar 31, 2020
1 parent 0c6a3c6 commit 41493fd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Scoprire Online Treasure Hunt

This is a basic django web app for an Online treasure hunt.The front end was done by [Nidhin](https://github.com/bmnidhin)

Here are a few screenshots of the project:

![Home](img1.jpeg)
![Leaderboard](img2.jpeg.jpg)

Binary file added img1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added imh2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified treasurehunt/__pycache__/views.cpython-36.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion treasurehunt/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def question(request):


def leaderboard(request):
leader = models.Score.objects.all().order_by('-score')
leader = models.Score.objects.all().order_by('-score',)

if len(leader) >= 10:
user_name = []
Expand Down

0 comments on commit 41493fd

Please sign in to comment.