summaryrefslogtreecommitdiff
path: root/fossee_manim
diff options
context:
space:
mode:
authorAkshen2019-04-16 16:42:54 +0530
committerAkshen2019-04-16 16:42:54 +0530
commit021d635e30bd1ed285f62446255a70945f35218f (patch)
tree2dca577c2aaa96c40e0bd3b66dbaa0748a074549 /fossee_manim
parent0ac3fcc9f517e4892aa69e6d90e3c05a4299238f (diff)
downloadFOSSEE_animations-021d635e30bd1ed285f62446255a70945f35218f.tar.gz
FOSSEE_animations-021d635e30bd1ed285f62446255a70945f35218f.tar.bz2
FOSSEE_animations-021d635e30bd1ed285f62446255a70945f35218f.zip
images added and settings.py updated
Diffstat (limited to 'fossee_manim')
-rw-r--r--fossee_manim/static/img/SS.pngbin0 -> 147047 bytes
-rw-r--r--fossee_manim/static/img/fossee_logo.pngbin0 -> 5663 bytes
-rw-r--r--fossee_manim/static/img/fossee_logo_iitb.pngbin0 -> 12150 bytes
-rw-r--r--fossee_manim/views.py4
4 files changed, 2 insertions, 2 deletions
diff --git a/fossee_manim/static/img/SS.png b/fossee_manim/static/img/SS.png
new file mode 100644
index 0000000..50ed1ca
--- /dev/null
+++ b/fossee_manim/static/img/SS.png
Binary files differ
diff --git a/fossee_manim/static/img/fossee_logo.png b/fossee_manim/static/img/fossee_logo.png
new file mode 100644
index 0000000..d2d18d0
--- /dev/null
+++ b/fossee_manim/static/img/fossee_logo.png
Binary files differ
diff --git a/fossee_manim/static/img/fossee_logo_iitb.png b/fossee_manim/static/img/fossee_logo_iitb.png
new file mode 100644
index 0000000..f437437
--- /dev/null
+++ b/fossee_manim/static/img/fossee_logo_iitb.png
Binary files differ
diff --git a/fossee_manim/views.py b/fossee_manim/views.py
index 44f20c1..38b47ec 100644
--- a/fossee_manim/views.py
+++ b/fossee_manim/views.py
@@ -184,10 +184,10 @@ def user_register(request):
else:
if request.user.is_authenticated():
return redirect('/view_profile/')
+ categories = Category.objects.all()
return render(
request, "fossee_manim/registration/register.html",
- {"form": form}
- )
+ {"form": form, 'categories': categories})
else:
if request.user.is_authenticated() and is_email_checked(request.user):
return redirect('/view_profile/')