{% for field in object.list %}
{% ifnotequal field.name "title" %}
- <li><b>{{ field.name }}</b> : {{ field.value }}</li>
+ <li><b>{{ field.name|capfirst }}</b> : {{ field.value }}</li>
{% endifnotequal %}
{% endfor %}
{% block content %}
{% if item %}
<div class="item_visualization">
- <img src="{% url telemeta-item-visualize item.id|urlencode,visualizer_id %}">
+ <img src="{% url telemeta-item-visualize item.id,visualizer_id %}">
<form method="GET">
<select name="visualizer_id" onchange="this.form.submit()">
{% for v in visualizers %}
<h3>Search: {{ pattern }}</h3>
{% if collections %}
<h4>Collections</h4>
- <ul>
+ <table class="resources-list">
{% for c in collections %}
- <li><b>{{ c.title }}</b>
- <a href="{% url telemeta-collection-detail c.id %}">View</a>
- <a href="#">Edit</a>
- </li>
+ <tr>
+ <td>
+ <a href="{% url telemeta-collection-detail c.id %}">
+ {{ c.title }}
+ </a>
+ </td>
+ <td>
+ [{{c.id}}]
+ </td>
+ </tr>
{% endfor %}
+ </table>
</ul>
{% endif %}
{% if items %}