Skip to content

Commit

Permalink
fixed a bug in show Mysample/lib/seq details'
Browse files Browse the repository at this point in the history
  • Loading branch information
biomystery committed Jan 16, 2019
1 parent 0d9de68 commit 61a6bee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions templates/masterseq_app/libdetail.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
{% if 'my' in request.META.HTTP_REFERER or 'add' in request.META.HTTP_REFERER or 'update' in request.META.HTTP_REFERER%}
<li class="breadcrumb-item"><a class="linkblue" href="">Me Metadata</a></li>
<li class="breadcrumb-item"><a class="linkblue" href="{% url 'masterseq_app:user_metadata' %}">My Metadata</a></li>
{% else %}
<li class="breadcrumb-item"><a class="linkblue" href="{% url 'masterseq_app:index' %}">All Metadata</a></li>
{% endif %}
Expand All @@ -39,4 +39,4 @@



{% endblock %}
{% endblock %}
4 changes: 2 additions & 2 deletions templates/masterseq_app/sampledetail.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
{% if 'my' in request.META.HTTP_REFERER or 'add' in request.META.HTTP_REFERER or 'update' in request.META.HTTP_REFERER%}
<li class="breadcrumb-item"><a class="linkblue" href="">My Metadata</a></li>
<li class="breadcrumb-item"><a class="linkblue" href="{% url 'masterseq_app:user_metadata' %}">My Metadata</a></li>
{% else %}
<li class="breadcrumb-item"><a class="linkblue" href="{% url 'masterseq_app:index' %}">All Metadata</a></li>
{% endif %}
Expand All @@ -44,4 +44,4 @@



{% endblock %}
{% endblock %}
4 changes: 2 additions & 2 deletions templates/masterseq_app/seqdetail.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
{% if 'my' in request.META.HTTP_REFERER or 'add' in request.META.HTTP_REFERER or 'update' in request.META.HTTP_REFERER%}
<li class="breadcrumb-item"><a class="linkblue" href="">My Metadata</a></li>
<li class="breadcrumb-item"><a class="linkblue" href="{% url 'masterseq_app:user_metadata' %}">My Metadata</a></li>
{% else %}
<li class="breadcrumb-item"><a class="linkblue" href="{% url 'masterseq_app:index' %}">All Metadata</a></li>
{% endif %}
Expand All @@ -39,4 +39,4 @@



{% endblock %}
{% endblock %}

0 comments on commit 61a6bee

Please sign in to comment.