Indefero

Indefero Commit Details


Date:2011-03-17 20:14:22 (13 years 9 months ago)
Author:Thomas Keller
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:045eb766f1f4a560ffbf0f03634aa7de98cfb5ef
Parents: 22d4bd0e6f1107ddd71d27a8093b1dd2cde72887
Message:Improve the rendering of the prev / next links in the issue view and note the change in NEWS.

Changes:

File differences

NEWS.mdtext
1212
1313
1414
15
1516
1617
1718
- Forge-wide and per-project watch lists of starred issues (issue 589)
- Configure a default issue template for each project (issues 212 and 540)
- Pick default issue labels from the configured project settings (issue 556)
- Navigate to a preceding / following issue in the issue detail view
- Many new text syntaxes to auto-link revisions (see [[AutomaticLinks]], issue 569)
* _Documentation wiki_:
src/IDF/templates/idf/issues/view.html
11
22
33
4
4
55
66
77
{extends "idf/issues/base.html"}
{block titleicon}{if $form}<form class="star" method="post" action="{url 'IDF_Views_Issue::star', array($project.shortname, $issue.id)}"><input type="image" src="{if $starred}{media '/idf/img/star.png'}{else}{media '/idf/img/star-grey.png'}{/if}" name="submit" title="{if $starred}{trans 'Remove this issue from your watch list'}{else}{trans 'Add this issue to your watch list'}{/if}" /></form> {/if}{/block}
{block body}
<div style="float:right;">
<div class="issue-prev-next">
{if $previous_issue_id}
<a href="{url 'IDF_Views_Issue::view', array($project.shortname, $previous_issue_id)}" title="{if $closed}{trans 'Click here to view the previous closed issue'}{else}{trans 'Click here to view the previous open issue'}{/if}">Previous issue</a>
{/if}
www/media/idf/css/style.css
273273
274274
275275
276
277
278
279
280
276281
277282
278283
color: #888a85;
}
div.issue-prev-next {
float: right;
margin-top: -25px;
}
div.issue-submit-info {
background-color: #d3d7cf;
-moz-border-radius: 3px;

Archive Download the corresponding diff file

Page rendered in 0.09531s using 13 queries.