remove easter eggs

This commit is contained in:
2018-05-23 16:06:30 +02:00
parent 8f30d7e3fb
commit ad3c2944cd
5 changed files with 9 additions and 36 deletions

View File

@@ -5,15 +5,7 @@ from project.models import Notification
def search_form(request):
egg_pages = (
(81, 'C', 1),
(83, 'R', 2),
(95, 'E', 3),
(105, 'D', 4),
(99, 'O', 5),
)
return {
'egg_pages': egg_pages,
'search_form': ModelSearchForm
}

View File

@@ -30,28 +30,6 @@
{% block content_main %}
{% placeholder 'content' %}
{% endblock %}
{% for page, letter, position in egg_pages %}
{% if page == request.current_page.pk %}
<a href="#" class="search__contest__item data_id_{{ forloop.counter }}">
<span class="letter">{{ letter }}</span>
<span class="position">{{ position }}</span>
<div class="flower petal{% cycle '5' '8' '10' %} {% cycle 'roundpetal' '' %}">
<div class="petal">
<div class="petal">
<div class="petal">
<div class="petal">
<div class="petal">
</div>
</div>
</div>
</div>
</div>
</div>
</a>
{% endif %}
{% endfor %}
</div>
</div>
</div>