Skip to content

Commit

Permalink
Bug 573146, fixed a syntax error, helping fligtar sleep at night
Browse files Browse the repository at this point in the history
  • Loading branch information
potch committed Jul 15, 2010
1 parent 78280de commit 897c697
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/stats/templates/stats/stats.html
Expand Up @@ -77,9 +77,9 @@ <h4 class="author">{{ _('by') }} {{ users_list(addon.listed_authors) }}</h4>
{% if true %}
<div class="custom criteria">
<form id="date-range-form">
<label for"date-range-start">From</label>
<label for="date-range-start">From</label>
<input type="date" id="date-range-start" />
<label for"date-range-end">To</label>
<label for="date-range-end">To</label>
<input type="date" id="date-range-end" />
<label for="date-range-grouping">grouped by</label>
<select id="date-range-grouping">
Expand Down
2 changes: 1 addition & 1 deletion apps/versions/templates/versions/version.html
Expand Up @@ -45,7 +45,7 @@ <h5>

{% if addon.view_source and request.user.is_authenticated() and version.has_files %}
{# TODO reverse URL #}
<a class="source-code" href="{{ remora_url('/files/browse/{0}'|f(version.all_files[0].pk)) }}">
<br/><a class="source-code" href="{{ remora_url('/files/browse/{0}'|f(version.all_files[0].pk)) }}">
{{ _('View the source') }}</a>
{% endif %}
{% if show_versions_link and not addon.is_selfhosted() %}
Expand Down
2 changes: 1 addition & 1 deletion media/css/zamboni/zamboni.css
Expand Up @@ -1699,7 +1699,7 @@ form .error .note.error {
}

.version a.source-code {
display: block;
display: inline-block;
margin-top: 1em;
padding-left: 20px;
}
Expand Down

0 comments on commit 897c697

Please sign in to comment.