Indefero

Indefero Commit Details


Date:2011-02-23 13:20:02 (13 years 9 months ago)
Author:William MARTIN
Branch:develop, feature-issue_links, feature.better-home, feature.content-md5, feature.diff-whitespace, feature.download-md5, feature.issue-links, feature.issue-of-others, feature.issue-summary, feature.search-filter, feature.webrepos, feature.wiki-default-page, release-1.1, release-1.2, release-1.3
Commit:cdedaa460418d02f576188a1f0dc30cfbd632e9c
Parents: 2130b327df20b0b67b6b452f92856f7e70bc9822
Message:Fix issue 591 Improve render of issue tag list

Changes:

File differences

src/IDF/templates/idf/issues/index.html
1313
1414
1515
16
16
1717
18
19
18
19
20
21
22
2023
{blocktrans}<p><strong>Open issues:</strong> <a href="{$open_url}">{$open}</a></p>
<p><strong>Closed issues:</strong> <a href="{$closed_url}">{$closed}</a></p>{/blocktrans}
{assign $class = ''}{assign $i = 0}
<p class="smaller">{foreach $project.getTagCloud($cloud) as $label}
<div id="issue-tags" class="smaller"><dl>{foreach $project.getTagCloud($cloud) as $label}
{aurl 'url', 'IDF_Views_Issue::listLabel', array($project.shortname, $label.id, 'open')}
{if $class != $label.class}{if $i != 0}<br />{/if}<strong class="label">{$label.class}:</strong> {/if}
<a href="{$url}" class="label">{$label.name}</a>,{assign $class = $label.class}{assign $i = $i + 1}{/foreach}</p>
{if $class != $label.class}<dt class="label">{$label.class}</dt>{assign $i = 0}{/if}
<dd><a href="{$url}" class="label">{$label.name},</a></dd>
{assign $class = $label.class}
{assign $i = $i + 1}
{/foreach}</dl></p>
{/block}
www/media/idf/css/style.css
203203
204204
205205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
206220
207221
208222
/**
* Issue
*/
#issue-tags dl {
margin: 0;
}
#issue-tags dt {
margin-top: .5em;
font-weight: bold;
}
#issue-tags dd {
margin: 0;
display: inline;
}
a.issue-c {
text-decoration: line-through;
}

Archive Download the corresponding diff file

Page rendered in 0.08984s using 14 queries.