Skip to content
This repository has been archived by the owner on Oct 25, 2021. It is now read-only.

Commit

Permalink
Merge branch 'master' of git@github.com:edorian/Build-your-own-Textad…
Browse files Browse the repository at this point in the history
…venture
  • Loading branch information
gregmuellegger committed Aug 15, 2010
2 parents 8a065d3 + 4e0cf74 commit 2f8513f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/website/adventure/templatetags/rating_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def display_rating(adventure):

ret.append(
'<input class="star {split:4}" type="radio" name="rating-%s" '
' value="%s" title="Rated %s on average by %s users" disabled="disabled" %s />'
' value="%s" title="Rated with %s Stars on average by %s users" disabled="disabled" %s />'
% (adventure.id, step, adventure.avg_rating, adventure.ratings, checked)
);
return "\n".join(ret);
2 changes: 1 addition & 1 deletion templates/adventure/adventure_location.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h1 class="pullleft">{{ adventure }}</h1>
{{ extra_content }}
{% endif %}

<h2>{{ location }}</h2>
<h2>{{ location.title }}</h2>
<p>{{ location.get_description_display }}</p>
{% if location.type != location.TYPE_NORMAL %}
<hr>
Expand Down
2 changes: 1 addition & 1 deletion templates/adventure/adventure_start.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% block content %}
<p>Your Adventure has begun ! Go forth noble one !</p>
<p><strong>Your adventure has begun ! Go forth noble one !</strong></p>
<hr>
{% endblock %}

0 comments on commit 2f8513f

Please sign in to comment.