Simplify route methods display

Show just the names as text, without the Python list syntax formatting.
This commit is contained in:
Matt Good
2015-04-14 14:58:31 -07:00
parent 95d7eb977f
commit cfe1624730

View File

@@ -14,7 +14,7 @@
<tr>
<td>{{ route.rule }}</td>
<td>{{ route.endpoint }}</td>
<td>{{ route.methods|sort }}</td>
<td>{{ route.methods|sort|join(', ') }}</td>
<td>{{ route.alias }}</td>
<td>{{ route.redirect_to }}</td>
</tr>