Edgewall Software

Changes between Version 1 and Version 2 of Ticket #13287


Ignore:
Timestamp:
May 7, 2020, 7:14:39 PM (4 years ago)
Author:
Ryan J Ollos
Comment:

I'm not sure, it works fine for me:

${ticket_body_hdr}
--------------------------------------------------------------------------
# set sel = ('Reporter', 'Owner', 'Type', 'Status', 'Priority', 'Milestone',
             'Component', 'Severity', 'Resolution', 'Keywords')
# for a in ticket_props.replace('|', '\n').splitlines()[1:-1]|map('trim'):
#   set a = a.split(':', 1)|map('trim')|list
#   if len(a) > 1 and a[0] in sel:
${'%-*s  %s'|format(12, a[0] + ':', a[1])}
#   endif
# endfor
--------------------------------------------------------------------------
# if ticket.new:
${ticket.description}
# else:
#   if changes_body:
${_('Changes (by %(author)s):', author=change.author)}

${changes_body}
#   endif
#   if changes_descr:
#     if not changes_body and not change.comment and change.author:
${_('Description changed by %(author)s:', author=change.author)}
#     endif
${changes_descr}
--
#   endif
#   if change.comment:

${_('Comment:') if changes_body else
  _('Comment (by %(author)s):', author=change.author)}

${change.comment}
#   endif
# endif
${'-- '}
${_('Ticket URL: <%(link)s>', link=ticket.link)}
${project.name} <${project.url or abs_href()}>
${project.descr}

Please use MailingList in the future for support inquiries, but we can take this one to completion here.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13287

    • Property Status newclosed
    • Property Resolutionworksforme
  • Ticket #13287 – Description

    v1 v2  
    55
    66{{{
    7 
    8 
    97--------------------------------------------------------------------------
    108# set sel = ('Reporter', 'Owner', 'Type', 'Status', 'Priority', 'Milestone',