Skip to content

Commit 31f2114

Browse files
committed
ordering done
1 parent e332d05 commit 31f2114

File tree

4 files changed

+29
-27
lines changed

4 files changed

+29
-27
lines changed

.idea/workspace.xml

+22-27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

db.sqlite3

0 Bytes
Binary file not shown.

lapp/__pycache__/views.cpython-36.pyc

0 Bytes
Binary file not shown.

lapp/views.py

+7
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,13 @@ def edit(request,d):
126126

127127
def my_files(request):
128128
n = Box.objects.all()
129+
130+
# for i in n:
131+
# if i.username == request.user:
132+
# print("1")
133+
# m = [i.title,i.content,i.url,i.image]
134+
# print(m)
135+
129136
comment = Comment.objects.all()
130137
return render(request, 'my_files.html', {'text':n, 'comment':comment})
131138

0 commit comments

Comments
 (0)