Skip to content

Commit

Permalink
Fixed the order in which the check marks are shown in the Tar mission…
Browse files Browse the repository at this point in the history
… progress. Fixes Issue726
  • Loading branch information
soonick committed Jun 15, 2012
1 parent 3ac3ee5 commit 7ea3890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysite/missions/templates/missions/tar/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
About this mission
</a>
</li>
<li id='link-unpacking' {% if create_done %}class='tick-progress'{% else %}class='cross-progress'{% endif %}>
<li id='link-unpacking' {% if unpack_done %}class='tick-progress'{% else %}class='cross-progress'{% endif %}>
<a href='{% url mysite.missions.tar.views.unpacking %}'>
Unpacking tarballs
</a>
</li>
<li id='link-creating' {% if unpack_done %}class='tick-progress'{% else %}class='cross-progress'{% endif %}>
<li id='link-creating' {% if create_done %}class='tick-progress'{% else %}class='cross-progress'{% endif %}>
<a href='{% url mysite.missions.tar.views.creating %}'>
Creating tarballs
</a>
Expand Down

0 comments on commit 7ea3890

Please sign in to comment.