I had the same issues. I think the position and summary columns are
too long and the description is not.
The patch fixes to templates/agilo_backlog.html the following:
1. Position column is made smaller
2. Make forms of class=printableform so that backlogs are printed
3. Summary column is 40%, this is what makes it look ugly. The patch
removes the 40%.
Index: agilo_backlog.html
===================================================================
--- agilo_backlog.html (revision 542)
+++ agilo_backlog.html (working copy)
@@ -57,16 +57,18 @@
<py:if test="backlog">
<h1>${backlog.name}
<span py:if="backlog.scope" py:strip="">for $
{backlog.scope}
- <span py:if="backlog.b_type == 1 and defined
('team')">(team: <a href="${href.team(team.name)}">${team.name}</a>)</
span>
+ <span py:if="backlog.b_type == 1 and defined
('team') and team">(team: <a href="${href.team(team.name)}">$
{team.name}</a>)</span>
</span>
<span py:if="backlog.count() != 0"
class="numrows">
(<span id="item_display">${user_only and
open_only and 'displaying some of ' or ''}</span>
${backlog.count()} items)</span></h1>
<div class="sprint_info" py:if="sprint">
- <div class="description">${sprint.description}
</div>
- Start: ${format_date(sprint.start)}
- End: ${format_date(sprint.end)}
- Status: <div class="sprint_status $
{(sprint.is_closed and 'closed') or (sprint.is_currently_running and
'running') or 'not_started'}" > </div>
+ <div class="description">${wiki_to_html
(context, sprint.description)}</div>
+ <div class="status">
+ <b>Start:</b> ${format_date(sprint.start)}
+ <b>End:</b> ${format_date(sprint.end)}
+ <b>Status:</b> <span class="sprint_status $
{(sprint.is_closed and 'closed') or (sprint.is_currently_running and
'running') or 'not_started'}" ></span>
+ </div>
</div>
</py:if>
<py:if test="not backlog">
@@ -101,7 +103,7 @@
<p class="date">${wiki_to_html(context,
backlog.description)}</p>
<div class="buttons">
- <form id="display_form" action="" method="get"> <!--!
py:if="backlog.b_type != 0" > -->
+ <form class="printableform" id="display_form" action=""
method="get"> <!--! py:if="backlog.b_type != 0" > -->
<input type="submit"
value="${user_only and 'Show everybody\'s
tickets' or 'Show my tickets'}"
name="${user_only and 'everybody' or
'user_only'}"
@@ -114,18 +116,16 @@
<input type="hidden" name="name" value="$
{backlog_name}" />
</form>
</div>
- <form method="POST" action="" id="backlog_form">
+ <form class="printableform" method="POST" action=""
id="backlog_form">
<table id="backlog" class="listing tickets backlog">
<thead>
- <tr>
+ <tr class="nodrag nodrop">
<!--! <th class="dragHandle"></th> -->
<th class="checkbox"></th>
<py:for each="header in headers">
<?python
wattr = {}
- if header == 'Summary':
- wattr={'width': '40%'}
- elif header == 'Position':
+ if header == 'Position':
wattr={'class': 'pos'}
?>
<th py:attrs="wattr">${header}</th>
@@ -170,7 +170,7 @@
not work as expected. A
user can resort the backlog even if he may
not edit the ticket itself.
-->
<py:when test="col.editable">
- <input class="position"
type="text" name="pos_${bi.id}" value="${bi.pos}" />
+ <input size="3"
class="position" type="text" name="pos_${bi.id}" value="${bi.pos}" />
</py:when>
<py:otherwise>${bi.pos}</
py:otherwise>
</py:choose>
@@ -315,4 +315,4 @@
<a href="${req.href('agilo-help', 'user/
backlog')}">Backlogs</a> in the Agilo help.
</div>
</body>
-</html>
\ No newline at end of file
+</html>
On Mar 20, 9:09 am, "rupert.thurner" <[email protected]> wrote:
> hi,
>
> is there a possibility to make the sprint backlog:
> 1. look a little bit nicer
> currently the description field is very narrow (same witdth then
> all other fields),
> but enormously long
> 2. export it to excel
>
> this is on both, ie7, and firefox3.
>
> rupert. .
>
> rupert.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Agilo for Scrum" group. This group is moderated by agile42 GmbH
http://www.agile42.com and is focused in supporting Agilo for Scrum users.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/agilo?hl=en
-~----------~----~----~----~------~----~------~--~---