Skip to content

Commit f6743b2

Browse files
committed
squashing
1 parent 72448d5 commit f6743b2

File tree

8 files changed

+7
-10
lines changed

8 files changed

+7
-10
lines changed

Procfile

100755100644
File mode changed.

cosmos

-1
This file was deleted.

cosmos_search/settings.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@
4545
# Application definition
4646

4747
INSTALLED_APPS = [
48-
'update.apps.UpdateConfig',
49-
'search.apps.SearchConfig',
5048
'django.contrib.admin',
5149
'django.contrib.auth',
5250
'django.contrib.contenttypes',
5351
'django.contrib.sessions',
5452
'django.contrib.messages',
5553
'django.contrib.staticfiles',
54+
'update.apps.UpdateConfig',
55+
'search.apps.SearchConfig',
5656
]
5757

5858
MIDDLEWARE = [

manage.py

100755100644
File mode changed.

runtime.txt

100755100644
File mode changed.

search/templates/cosmos/header.html

+3-4
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
padding: 0%;
5454
list-style-type: none;
5555
}
56-
5756
#id_vote_value::after {
5857
content: '';
5958
}
@@ -93,6 +92,9 @@
9392
color: rgba(255, 255, 255, 0.6);
9493
}
9594
</style>
95+
{% block style %}
96+
{% endblock %}
97+
9698
<script type="text/javascript">
9799
function getUserIP(onNewIP) { // onNewIp - your listener function for new IPs
98100
//compatibility for firefox and chrome
@@ -148,9 +150,6 @@
148150
}
149151
}
150152
</script>
151-
{% block style %}
152-
{% endblock %}
153-
154153
</head>
155154

156155
<body style="overflow-x: hidden;">

search/urls.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
from . import views
12
from django.conf.urls import url
2-
from search import views
33

44
app_name = 'search'
55

search/views.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
from django.http import HttpResponse
2+
from django.shortcuts import render, redirect
23
from django.conf import settings
34
import json
45
import random
56
from random import shuffle
67
import re
7-
88
from search.models import Votes
99
from search.templatetags.calculator import getResult
10-
from django.shortcuts import render, redirect
1110
from search.form import VotesForm
1211

1312
COSMOS_SEP = '_'

0 commit comments

Comments
 (0)