Commit 4f87b4f1 authored by Michal Čihař's avatar Michal Čihař

Increase cell size for rst report

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent ea8a48eb
......@@ -182,8 +182,8 @@ def get_counts(request, project, subproject):
mime = 'text/html'
end = '</table>'
else:
heading = ' '.join(['=' * 25] * 4)
start = '{0}\n{1:25} {2:25} {3:25} {4:25}\n{0}'.format(
heading = ' '.join(['=' * 40] * 4)
start = '{0}\n{1:40} {2:40} {3:40} {4:40}\n{0}'.format(
heading,
'Name',
'Email',
......@@ -191,7 +191,7 @@ def get_counts(request, project, subproject):
'Count'
)
row_start = ''
cell_format = u'{0:25} '
cell_format = u'{0:40} '
row_end = ''
mime = 'text/plain'
end = heading
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment