Skip to content
Snippets Groups Projects
Commit 1690deea authored by Felix Schäfer's avatar Felix Schäfer :construction_worker:
Browse files

Only show first 200 chars in table, fixes #8

parent 77d3f4ed
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<tr> <tr>
<th scope="row"><img class="gravatar" src="{{ pr.gr_url }}" /></th> <th scope="row"><img class="gravatar" src="{{ pr.gr_url }}" /></th>
{% for f in pr.fields %} {% for f in pr.fields %}
<td>{{ f }}</td> <td title="{{ f }}">{{ f|truncatechars:200 }}</td>
{% endfor %} {% endfor %}
</tr> </tr>
{% endfor %} {% endfor %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment