Skip to content

Commit

Permalink
Merge pull request #144 from fxbt/master
Browse files Browse the repository at this point in the history
Add link to species report
  • Loading branch information
modrzew authored Aug 8, 2016
2 parents cf7e8f8 + c3fcdab commit f85492e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/report.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ <h3>Most &amp; least frequently spawning species</h2>

<div class="text-center">
{% for icon in icons.top30 %}
<img src="../static/larger-icons/{{ icon[0] }}.png" title="#{{ icon[0] }} {{ icon[1] }}">
<a href="/report/{{ icon[0] }}"><img src="../static/larger-icons/{{ icon[0] }}.png" title="#{{ icon[0] }} {{ icon[1] }}"></a>
{% if loop.index > 0 and loop.index % 10 == 0 %}
<br>
{% endif %}
Expand All @@ -138,7 +138,7 @@ <h3>Most &amp; least frequently spawning species</h2>

<div class="text-center">
{% for icon in icons.bottom30 %}
<img src="../static/larger-icons/{{ icon[0] }}.png" title="#{{ icon[0] }} {{ icon[1] }}">
<a href="/report/{{ icon[0] }}"><img src="../static/larger-icons/{{ icon[0] }}.png" title="#{{ icon[0] }} {{ icon[1] }}"></a>
{% if loop.index > 0 and loop.index % 10 == 0 %}
<br>
{% endif %}
Expand All @@ -155,7 +155,7 @@ <h3>Evolutions and rare Pokemon</h3>

<div class="text-center">
{% for icon in icons.stage2 %}
<img src="../static/larger-icons/{{ icon[0] }}.png" title="#{{ icon[0] }} {{ icon[1] }}">
<a href="/report/{{ icon[0] }}"><img src="../static/larger-icons/{{ icon[0] }}.png" title="#{{ icon[0] }} {{ icon[1] }}"></a>
{% if loop.index > 0 and loop.index % 10 == 0 %}
<br>
{% endif %}
Expand All @@ -172,7 +172,7 @@ <h3>Nonexistent species</h3>

<div class="text-center">
{% for icon in icons.nonexistent %}
<img src="../static/larger-icons/{{ icon[0] }}.png" title="#{{ icon[0] }} {{ icon[1] }}">
<a href="/report/{{ icon[0] }}"><img src="../static/larger-icons/{{ icon[0] }}.png" title="#{{ icon[0] }} {{ icon[1] }}"></a>
{% if loop.index > 0 and loop.index % 10 == 0 %}
<br>
{% endif %}
Expand Down

0 comments on commit f85492e

Please sign in to comment.