diff --git a/rhodecode/templates/changeset/changeset_file_comment.html b/rhodecode/templates/changeset/changeset_file_comment.html --- a/rhodecode/templates/changeset/changeset_file_comment.html +++ b/rhodecode/templates/changeset/changeset_file_comment.html @@ -6,14 +6,14 @@ <%def name="comment_block(co)">
-
+
-
- ${co.author.username} -
-
- ${h.age(co.modified_at)} -
+
+ ${co.author.username} +
+
+ ${h.age(co.modified_at)} +
%if co.status_change:
@@ -41,10 +41,10 @@ ${_('Delete')}
%endif -
-
- ${h.rst_w_mentions(co.text)|n} -
+
+
+ ${h.rst_w_mentions(co.text)|n} +
@@ -60,7 +60,7 @@
${_('Commenting on line {1}.')} ${(_('Comments parsed using %s syntax with %s support.') % ( ('RST' % h.url('rst_help')), - ('@mention' % _('Use @username inside this text to send notification to this RhodeCode user')) + ('@mention' % _('Use @username inside this text to send notification to this RhodeCode user')) ) )|n } @@ -134,8 +134,8 @@
${(_('Comments parsed using %s syntax with %s support.') % (('RST' % h.url('rst_help')), - '@mention' % - _('Use @username inside this text to send notification to this RhodeCode user')))|n} + '@mention' % + _('Use @username inside this text to send notification to this RhodeCode user')))|n} %if change_status: | @@ -178,12 +178,12 @@ YUE.onDOMReady(function () { } }) YUE.on(YUQ('.status_change_radio'), 'change',function(e){ - var val = e.currentTarget.value; - if (val == 'approved' || val == 'rejected') { - YUD.removeClass('save_close', 'hidden'); - }else{ - YUD.addClass('save_close', 'hidden'); - } + var val = e.currentTarget.value; + if (val == 'approved' || val == 'rejected') { + YUD.removeClass('save_close', 'hidden'); + }else{ + YUD.addClass('save_close', 'hidden'); + } }) });