Skip to content
This repository was archived by the owner on Dec 11, 2018. It is now read-only.

Commit 9a9a035

Browse files
committed
Stop showing urls on search results
They are too long and make the UI suck. Needs some thought.
1 parent f5eeb58 commit 9a9a035

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data/templates/proposals/search.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<tr>
4141
<th>{{ 'proposals-list-id'|message }}</th>
4242
<th>{{ 'proposals-list-title'|message }}</th>
43-
<th>{{ 'proposals-list-url'|message }}</th>
43+
{#<th>{{ 'proposals-list-url'|message }}</th>#}
4444
<th>{{ 'proposals-list-theme'|message }}</th>
4545
<th>{{ 'proposals-list-amount'|message }}</th>
4646
<th>{{ 'proposals-list-reviews'|message }}</th>
@@ -50,7 +50,7 @@
5050
<tr>
5151
<td>{{ row.id }}</td>
5252
<td><a href="{{ urlFor( 'proposals_view', { 'id':row.id } ) }}">{{ row.title }}</a></td>
53-
<td><a href="{{ row.url|raw }}" target="_blank">{{ row.url }}</a></td>
53+
{#<td><a href="{{ row.url|raw }}" target="_blank">{{ row.url }}</a></td>#}
5454
<td>{{ row.theme }}</td>
5555
<td class="text-right">{{ row.amount|number_format }}</td>
5656
<td class="text-right">{{ row.review_count|number_format }}</td>

0 commit comments

Comments
 (0)