somewhat fragile simple URL tests for views_doc.py with ordinary unit tests. The new tests are still fairly basic but at least test more than the URL tests did. - Legacy-Id: 5295
10 lines
345 B
HTML
10 lines
345 B
HTML
<h1>{{ doc.title }}<br/>{{ name }}</h1>
|
|
|
|
<div id="mytabs" class="yui-navset">
|
|
<ul class="yui-nav">
|
|
{% for name, t, url, active in tabs %}
|
|
<li {% if t == selected %}class="selected"{% endif %}{% if not active %}class="disabled"{% endif %}><a{% if active %} href="{{ url }}"{% endif %}><em>{{ name }}</em></a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|