Skip to content

Commit

Permalink
fix: template formatting screwed up
Browse files Browse the repository at this point in the history
  • Loading branch information
ebridges committed Aug 20, 2021
1 parent fdc4f6e commit 2d3adeb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<script type="text/javascript" src="{% static 'js/media_item.js' %}"></script>
{% endblock %} {% block title %}Media Item{% endblock %} {% block nav_block %}
<h2 class="subtitle">
<a href='{% url ' collections-view ' user.id %}' class='subtitle_link'><span class="nav-home-icon">&#x2302;</span></a> /
<a href='{% url ' albums-view ' user.id collection_year %}' class='subtitle_link'>{{ collection_year }}</a> /
<a href='{% url ' media-list-view ' user.id collection_year album_id %}' class='subtitle_link'>{{ album_id }}</a> / {{ media_item.create_date }}
<a href="{% url 'collections-view' user.id %}" class='subtitle_link'><span class="nav-home-icon">&#x2302;</span></a> /
<a href="{% url 'albums-view' user.id collection_year %}" class='subtitle_link'>{{ collection_year }}</a> /
<a href="{% url 'media-list-view' user.id collection_year album_id %}" class='subtitle_link'>{{ album_id }}</a> / {{ media_item.create_date }}
</h2>
{% endblock %} {% block content %}
<div class="media_item_container">
Expand Down

0 comments on commit 2d3adeb

Please sign in to comment.