Skip to content

Commit

Permalink
add-README
Browse files Browse the repository at this point in the history
Former-commit-id: 33055c33403a15bf8c20c40993fe18b530457ffc
  • Loading branch information
Ubuntu committed Nov 25, 2021
1 parent 77f07d3 commit f69a8fe
Show file tree
Hide file tree
Showing 42 changed files with 1,515 additions and 1 deletion.
Binary file added README.assets/Logo.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 README.assets/aws.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 README.assets/choice.gif
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 README.assets/color_url_push.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 README.assets/datastringmake.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 README.assets/detail3.gif
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 README.assets/domain.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 README.assets/draw.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 README.assets/draw5.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 README.assets/erd-7816882.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 README.assets/erd-7816963.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 README.assets/erd.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 README.assets/for.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 README.assets/iframe.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 README.assets/image-20211118161641205.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 README.assets/image-20211123093357607.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 README.assets/image-20211123103730493.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 README.assets/image-20211123114402946.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 README.assets/image-20211123115001045.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 README.assets/image-20211123133120638.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 README.assets/json.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 README.assets/main5.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 README.assets/makecolorsdata.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 README.assets/mdn.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 README.assets/naver.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 README.assets/port.png
Binary file added README.assets/query1.png
Binary file added README.assets/query2.png
Binary file added README.assets/quiz.png
Binary file added README.assets/quiz_create.png
Binary file added README.assets/requests.png
Binary file added README.assets/res.png
Binary file added README.assets/res2.png
Binary file added README.assets/result1.png
Binary file added README.assets/result2.png
Binary file added README.assets/right.png
Binary file added README.assets/voice.gif
Binary file added README.assets/voice.png
Binary file added README.assets/wrong.png
1,509 changes: 1,508 additions & 1 deletion README.md

Large diffs are not rendered by default.

Binary file modified db.sqlite3
Binary file not shown.
7 changes: 7 additions & 0 deletions movies/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,11 @@ def quiz(request):
quizs = Quiz.objects.all()
point = request.user.point

# Profile Color Create
colors = request.user.usercolorrecord_set.all() # Color List
last_color = colors[len(colors)-1] # Picked Color
colors = reversed(colors) # Color Sort(Recently)

required_point = 0
if request.user.is_staff or point > 201:
pass
Expand Down Expand Up @@ -422,6 +427,8 @@ def quiz(request):
quizs_list.append([i,temps])

context = {
'colors': colors,
'last_color': last_color,
'quizs_list': quizs_list,
'required_point': required_point,
}
Expand Down

0 comments on commit f69a8fe

Please sign in to comment.