diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..3889a9e
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,6 @@
+
+# Default ignored files
+/workspace.xml
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
\ No newline at end of file
diff --git a/.idea/FOSSEE_animations.iml b/.idea/FOSSEE_animations.iml
new file mode 100644
index 0000000..201c35f
--- /dev/null
+++ b/.idea/FOSSEE_animations.iml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml
new file mode 100644
index 0000000..4ab70d8
--- /dev/null
+++ b/.idea/dataSources.xml
@@ -0,0 +1,33 @@
+
+
+
+
+ sqlite.xerial
+ true
+ org.sqlite.JDBC
+ jdbc:sqlite:$PROJECT_DIR$/db.sqlite3
+
+
+
+
+
+ file://$APPLICATION_CONFIG_DIR$/jdbc-drivers/Xerial SQLiteJDBC/3.25.1/sqlite-jdbc-3.25.1.jar
+
+
+ file://$APPLICATION_CONFIG_DIR$/jdbc-drivers/Xerial SQLiteJDBC/3.25.1/license.txt
+
+
+
+
+ sqlite.xerial
+ true
+ true
+ $PROJECT_DIR$/fossee_anime/settings.py
+ org.sqlite.JDBC
+ jdbc:sqlite:$PROJECT_DIR$/db.sqlite3
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml
new file mode 100644
index 0000000..105ce2d
--- /dev/null
+++ b/.idea/inspectionProfiles/profiles_settings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..f99b311
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..3dd842f
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/fossee_manim/forms.py b/fossee_manim/forms.py
index 69f8458..1860bee 100644
--- a/fossee_manim/forms.py
+++ b/fossee_manim/forms.py
@@ -1,5 +1,7 @@
from django import forms
from django.utils import timezone
+from taggit.forms import TagWidget
+
from .models import (
Profile, User, Animation,
Comment, AnimationStats
@@ -264,6 +266,9 @@ def __init__(self, *args, **kwargs):
class Meta:
model = Animation
fields = ['category', 'subcategory', 'title', 'outline', 'tags']
+ widgets = {
+ 'tags': TagWidget(),
+ }
class CommentForm(forms.ModelForm):
diff --git a/fossee_manim/models.py b/fossee_manim/models.py
index 273ebe6..e49726e 100644
--- a/fossee_manim/models.py
+++ b/fossee_manim/models.py
@@ -166,6 +166,12 @@ def __str__(self):
return u"{0}".format(self.name)
+# test
+class Example(models.Model):
+ name = models.CharField(max_length=20)
+ tags = TaggableManager()
+
+
class Animation(models.Model):
title = models.CharField(max_length=255)
contributor = models.ForeignKey(User, on_delete=models.CASCADE)
diff --git a/fossee_manim/static/css/index.css b/fossee_manim/static/css/index.css
index 0a7895e..5994fb1 100644
--- a/fossee_manim/static/css/index.css
+++ b/fossee_manim/static/css/index.css
@@ -62,7 +62,7 @@ form.example::after {
}
#btns {
- padding: 25 25 25 25;
+ padding:25 25 25 25;
font-size: 155%;
font-family: 'Lato', sans-serif;
}
@@ -124,3 +124,33 @@ hr {
background-color: #ffe0b2;
border-radius: 50%;
}
+
+.footer{
+ right: 0;
+ left: 0;
+ position: relative;
+ bottom: 0;
+
+ owerflow: hidden;
+ padding: 95px;
+ text-align: center;
+}
+a{
+ color:white;
+}
+
+a:hover{
+ color:white;
+ background-color: gray;
+}
+
+.navbar-toggler-icon {
+ display: inline-block;
+ width: 1.5em;
+ height: 1.5em;
+ vertical-align: middle;
+ content: "";
+ background: no-repeat center center;
+ background-size: 100% 100%;
+ background-color: white;
+}
\ No newline at end of file
diff --git a/fossee_manim/static/img/logo_main.png b/fossee_manim/static/img/logo_main.png
index 572f4b1..d0d094c 100644
Binary files a/fossee_manim/static/img/logo_main.png and b/fossee_manim/static/img/logo_main.png differ
diff --git a/fossee_manim/templates/fossee_manim/about.html b/fossee_manim/templates/fossee_manim/about.html
index 13b5a01..744aecf 100644
--- a/fossee_manim/templates/fossee_manim/about.html
+++ b/fossee_manim/templates/fossee_manim/about.html
@@ -5,8 +5,8 @@
{% endblock %}
{% block content %}
-
-
+
+ {% comment %}style="padding-top:120px"> {% endcomment %}
About FOSSEE Animations
What do we do and why?
@@ -16,4 +16,7 @@ What do we do and why?
- {% endblock content %}
+
+ {% endblock content %}
+
+
diff --git a/fossee_manim/templates/fossee_manim/base.html b/fossee_manim/templates/fossee_manim/base.html
index 06d7071..3286020 100644
--- a/fossee_manim/templates/fossee_manim/base.html
+++ b/fossee_manim/templates/fossee_manim/base.html
@@ -1,15 +1,16 @@
+
{% block title %}
- HomePage
+ HomePage
{% endblock %}
-
+
@@ -19,116 +20,113 @@
-
-
+
+
+
-
- {% block extra %}
+
+{% block extra %}
- {% endblock %}
+{% endblock %}
- {% block header %}
-