From e2e1991e573dd97d4eb9a20457436b1dc16cf3d8 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 29 Feb 2016 14:12:19 +0100 Subject: [PATCH] fix titles, fix static update --- app/deploy/start_app.sh | 2 +- app/festival/static/festival/css/festival.css | 6 +----- app/festival/templates/festival/artist_list.html | 4 ++++ app/templates/base.html | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/app/deploy/start_app.sh b/app/deploy/start_app.sh index a7759346..5fc440c7 100644 --- a/app/deploy/start_app.sh +++ b/app/deploy/start_app.sh @@ -41,7 +41,7 @@ then else # static files auto update watchmedo shell-command --patterns="*.js;*.css" --recursive \ - --command='python '$manage' collectstatic --noinput' $src & + --command='python '$manage' collectstatic --noinput' $app & uwsgi --socket :$port --wsgi-file $wsgi --chdir $app --master \ --processes $processes --threads $threads \ diff --git a/app/festival/static/festival/css/festival.css b/app/festival/static/festival/css/festival.css index 0e1179d9..b0b11fb5 100644 --- a/app/festival/static/festival/css/festival.css +++ b/app/festival/static/festival/css/festival.css @@ -1,8 +1,4 @@ .main { - margin-top: 5em; -} - -.main-panel { - margin-top: 5em; + margin-top: 4em; } diff --git a/app/festival/templates/festival/artist_list.html b/app/festival/templates/festival/artist_list.html index b921ee80..5b0a612d 100644 --- a/app/festival/templates/festival/artist_list.html +++ b/app/festival/templates/festival/artist_list.html @@ -4,6 +4,10 @@ {% block main %} +{% block title %} + {% trans "Artists" %} +{% endblock %} +
-
+
{% nevercache %} {% if messages %} @@ -95,11 +95,11 @@
-
+
{% block main %}{% endblock %}
-
+
{% nevercache %} {% include "includes/language_selector.html" %} {% include "includes/user_panel.html" %} -- 2.39.5