Skip to content

Commit

Permalink
Fix ifelse
Browse files Browse the repository at this point in the history
  • Loading branch information
stsewd committed Mar 5, 2019
1 parent 99191eb commit 5a1e667
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions readthedocs/templates/core/project_list_detailed.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
<ul class="module-item-menu">
<li>
{% if project.has_good_build %}
<a href="{{ project.get_docs_url }}">{% trans "View Docs" %}
{% else %}
<a href="{{ project.get_builds_url }}">{% trans "No Docs" %}</a>
{% endif %}
<a href="{{ project.get_docs_url }}">{% trans "View Docs" %}</a>
{% else %}
<a href="{{ project.get_builds_url }}">{% trans "No Docs" %}</a>
{% endif %}
</li>
</ul>

Expand Down

0 comments on commit 5a1e667

Please sign in to comment.