/* HTML dublin core display */
table.dublincore { width: auto; }
+table.dublincore caption {
+ text-align: left;
+ padding: 5px 0 10px;
+ font-weight: bold;
+ color: #666;
+}
/* Navigation (borrowed from Trac) */
.nav h2, .nav hr { display: none }
{% extends "base.html" %}
{% load telemeta_utils %}
+{% if object %}
{% block submenu %}
- <a href="{% url telemeta-collection-detail object.id|urlencode %}">
- Normal View</a>
+ <h3>Collection: {{ object.title }}</h3>
+ <div><a href="{% url telemeta-collection-detail object.id|urlencode %}">Normal View</a></div>
{% endblock %}
{% block content %}
-{% if object %}
- <h3>Collection: {{ object.title }}</h3>
+
<table class="dublincore listing">
<caption>Dublin Core Expression</caption>
<thead>
{% endfor %}
</tbody>
</table>
+{% endblock %}
{% else %}
<p>No such collection</p>
-{% endif %}
-{% endblock %}
+{% endif %}
\ No newline at end of file