Skip to content

Commit

Permalink
Remove parenthesis for budget in projects list on homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
yohanboniface committed Jan 27, 2014
1 parent fc9f7dd commit 2efd12c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions piati/static/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,7 @@ select[multiple="multiple"] {
.emphasis a.title {
font-family: 'open_sanssemibold';
}
.emphasis li,
.emphasis p {
margin-top: 0;
font-family: 'open_sanslight';
Expand Down
2 changes: 1 addition & 1 deletion piati/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<h2>{% trans %}Last projects{% endtrans %}</h2>
<ul class="emphasis">
{% for project in last_projects %}
<li><a class="title" href="{{ url_for('show_project', iati_identifier=project.id) }}">{{ project.name }}</a> ({{ project.total_budget|piati_money }}) <p>{{ project.description|truncate(200) }}</p><a href="{{ project.url }}" class="right"> {% trans %}See details{% endtrans %}</a></li>
<li><a class="title" href="{{ url_for('show_project', iati_identifier=project.id) }}">{{ project.name }}</a> {{ project.total_budget|piati_money }} <p>{{ project.description|truncate(200) }}</p><a href="{{ project.url }}" class="right"> {% trans %}See details{% endtrans %}</a></li>
{% if not loop.last %}
<hr />
{% endif %}
Expand Down

0 comments on commit 2efd12c

Please sign in to comment.