~hristoast/mousikofidi

7854ec9014fc75c898dc0508b1def0f8e08233ff — Hristos N. Triantafillou 2 years ago d360cea
Don't center the console text
1 files changed, 3 insertions(+), 3 deletions(-)

M mousikofidi/templates/playlist.html
M mousikofidi/templates/playlist.html => mousikofidi/templates/playlist.html +3 -3
@@ 2,9 2,9 @@
{% block content %}

  {% if bunk_tracks %}
    <div class="center">
      <h2>Oh no!</h2>
      <p>{% if audio_list == [] and video_list == [] %}All{% else %}Some{% endif %} tracks on this playlist failed to load.</p>
    <div>
      <h2 class="center">Oh no!</h2>
      <p class="center">{% if audio_list == [] and video_list == [] %}All{% else %}Some{% endif %} tracks on this playlist failed to load.</p>
      <p>Please check the MousikóFídi application logs for more information, or verify that {% if bunk_tracks|count > 1 %}these file paths are{% else %}this file path is{% endif %} correct and readable:</p>
      {% if bunk_tracks|count == 1 %}<pre><code>{{ bunk_tracks[0] }}</code></pre>{% else %}<pre><code>{% for t in bunk_tracks %}{{ t }}
{% endfor %}</code></pre>{% endif %}