Show More
@@ -852,7 +852,6 b' label {' | |||
|
852 | 852 | .notification-list { |
|
853 | 853 | |
|
854 | 854 | div { |
|
855 | display: inline-block; | |
|
856 | 855 | vertical-align: middle; |
|
857 | 856 | } |
|
858 | 857 | |
@@ -1947,10 +1946,6 b' BIN_FILENODE = 7' | |||
|
1947 | 1946 | text-align: left; |
|
1948 | 1947 | } |
|
1949 | 1948 | |
|
1950 | .desc{ | |
|
1951 | width: 1163px; | |
|
1952 | } | |
|
1953 | ||
|
1954 | 1949 | .delete-notifications, .read-notifications{ |
|
1955 | 1950 | width: 35px; |
|
1956 | 1951 | min-width: 35px; //fixes when only one button is displayed |
@@ -13,8 +13,8 b'' | |||
|
13 | 13 | <div id="notification_${notification.notification.notification_id}" class="container ${'unread' if not notification.read else '' }"> |
|
14 | 14 | <div class="notification-header"> |
|
15 | 15 | <div class="desc ${'unread' if not notification.read else '' }"> |
|
16 | ${base.gravatar(notification.notification.created_by_user.email, 16)} | |
|
16 | 17 | <a href="${h.route_path('notifications_show', notification_id=notification.notification.notification_id)}"> |
|
17 | ${base.gravatar(notification.notification.created_by_user.email, 16)} | |
|
18 | 18 | ${h.notification_description(notification.notification, request)} |
|
19 | 19 | </a> |
|
20 | 20 | </div> |
@@ -27,8 +27,10 b'' | |||
|
27 | 27 | <div class="table"> |
|
28 | 28 | <div id="notification_${c.notification.notification_id}" class="main-content-full"> |
|
29 | 29 | <div class="notification-header"> |
|
30 | <div class="pull-left"> | |
|
30 | 31 | ${self.gravatar(c.notification.created_by_user.email, 30)} |
|
31 |
<div |
|
|
32 | </div> | |
|
33 | <div class="desc pull-left"> | |
|
32 | 34 | ${h.notification_description(c.notification, request)} |
|
33 | 35 | </div> |
|
34 | 36 | <div class="delete-notifications"> |
@@ -47,7 +47,7 b' data = {' | |||
|
47 | 47 | } |
|
48 | 48 | %> |
|
49 | 49 | |
|
50 |
* |
|
|
50 | * ${_('Comment link')}: ${commit_comment_url} | |
|
51 | 51 | |
|
52 | 52 | %if status_change: |
|
53 | 53 | * ${_('Commit status')}: ${_('Status was changed to')}: *${status_change}* |
@@ -62,9 +62,9 b' data = {' | |||
|
62 | 62 | |
|
63 | 63 | %endif |
|
64 | 64 | % if comment_type == 'todo': |
|
65 | ${_('`TODO` comment')}: | |
|
65 | ${('Inline' if comment_file else 'General')} ${_('`TODO` number')} ${comment_id}: | |
|
66 | 66 | % else: |
|
67 | ${_('`Note` comment')}: | |
|
67 | ${('Inline' if comment_file else 'General')} ${_('`Note` number')} ${comment_id}: | |
|
68 | 68 | % endif |
|
69 | 69 | |
|
70 | 70 | ${comment_body |n, trim} |
@@ -57,12 +57,12 b' data = {' | |||
|
57 | 57 | } |
|
58 | 58 | %> |
|
59 | 59 | |
|
60 | ${h.literal(_('Pull request !{pr_id}: `{pr_title}`').format(**data))} | |
|
60 | * ${_('Comment link')}: ${pr_comment_url} | |
|
61 | ||
|
62 | * ${_('Pull Request')}: !${pull_request.pull_request_id} | |
|
61 | 63 | |
|
62 | 64 | * ${h.literal(_('Commit flow: {source_ref_type}:{source_ref_name} of {source_repo_url} into {target_ref_type}:{target_ref_name} of {target_repo_url}').format(**data))} |
|
63 | 65 | |
|
64 | * ${('Inline' if comment_file else 'General')} ${_('Comment link')}: ${pr_comment_url} | |
|
65 | ||
|
66 | 66 | %if status_change and not closing_pr: |
|
67 | 67 | * ${_('{user} submitted pull request !{pr_id} status: *{status}*').format(**data)} |
|
68 | 68 | |
@@ -75,9 +75,9 b' data = {' | |||
|
75 | 75 | |
|
76 | 76 | %endif |
|
77 | 77 | % if comment_type == 'todo': |
|
78 | ${_('`TODO` comment')}: | |
|
78 | ${('Inline' if comment_file else 'General')} ${_('`TODO` number')} ${comment_id}: | |
|
79 | 79 | % else: |
|
80 | ${_('`Note` comment')}: | |
|
80 | ${('Inline' if comment_file else 'General')} ${_('`Note` number')} ${comment_id}: | |
|
81 | 81 | % endif |
|
82 | 82 | |
|
83 | 83 | ${comment_body |n, trim} |
@@ -155,6 +155,14 b' data = {' | |||
|
155 | 155 | </td> |
|
156 | 156 | </tr> |
|
157 | 157 | % endif |
|
158 | <tr> | |
|
159 | <td style="padding-right:20px;">${_('Pull request')}:</td> | |
|
160 | <td> | |
|
161 | <a href="${pull_request_url}" style="${base.link_css()}"> | |
|
162 | !${pull_request.pull_request_id} | |
|
163 | </a> | |
|
164 | </td> | |
|
165 | </tr> | |
|
158 | 166 | |
|
159 | 167 | <tr> |
|
160 | 168 | <td style="padding-right:20px;line-height:20px;">${_('Commit Flow')}:</td> |
@@ -164,14 +172,7 b' data = {' | |||
|
164 | 172 | ${base.tag_button('{}:{}'.format(data['target_ref_type'], pull_request.target_ref_parts.name))} ${_('of')} ${data['target_repo_url']} |
|
165 | 173 | </td> |
|
166 | 174 | </tr> |
|
167 | <tr> | |
|
168 | <td style="padding-right:20px;">${_('Pull request')}:</td> | |
|
169 | <td> | |
|
170 | <a href="${pull_request_url}" style="${base.link_css()}"> | |
|
171 | !${pull_request.pull_request_id} | |
|
172 | </a> | |
|
173 | </td> | |
|
174 | </tr> | |
|
175 | ||
|
175 | 176 |
|
|
176 | 177 | <tr> |
|
177 | 178 | <td style="padding-right:20px;">${_('File')}:</td> |
@@ -34,12 +34,10 b' data = {' | |||
|
34 | 34 | } |
|
35 | 35 | %> |
|
36 | 36 | |
|
37 | ${h.literal(_('Pull request !{pr_id}: `{pr_title}`').format(**data))} | |
|
37 | * ${_('Pull Request link')}: ${pull_request_url} | |
|
38 | 38 | |
|
39 | 39 | * ${h.literal(_('Commit flow: {source_ref_type}:{source_ref_name} of {source_repo_url} into {target_ref_type}:{target_ref_name} of {target_repo_url}').format(**data))} |
|
40 | 40 | |
|
41 | * ${_('Pull Request link')}: ${pull_request_url} | |
|
42 | ||
|
43 | 41 | * ${_('Title')}: ${pull_request.title} |
|
44 | 42 | |
|
45 | 43 | * ${_('Description')}: |
@@ -104,6 +102,15 b' data = {' | |||
|
104 | 102 | </tr> |
|
105 | 103 | |
|
106 | 104 | <tr> |
|
105 | <td style="padding-right:20px;">${_('Pull request')}:</td> | |
|
106 | <td> | |
|
107 | <a href="${pull_request_url}" style="${base.link_css()}"> | |
|
108 | !${pull_request.pull_request_id} | |
|
109 | </a> | |
|
110 | </td> | |
|
111 | </tr> | |
|
112 | ||
|
113 | <tr> | |
|
107 | 114 | <td style="padding-right:20px;line-height:20px;">${_('Commit Flow')}:</td> |
|
108 | 115 | <td style="line-height:20px;"> |
|
109 | 116 | ${base.tag_button('{}:{}'.format(data['source_ref_type'], pull_request.source_ref_parts.name))} ${_('of')} ${data['source_repo_url']} |
@@ -113,14 +120,6 b' data = {' | |||
|
113 | 120 | </tr> |
|
114 | 121 | |
|
115 | 122 | <tr> |
|
116 | <td style="padding-right:20px;">${_('Pull request')}:</td> | |
|
117 | <td> | |
|
118 | <a href="${pull_request_url}" style="${base.link_css()}"> | |
|
119 | !${pull_request.pull_request_id} | |
|
120 | </a> | |
|
121 | </td> | |
|
122 | </tr> | |
|
123 | <tr> | |
|
124 | 123 | <td style="padding-right:20px;">${_('Description')}:</td> |
|
125 | 124 | <td style="white-space:pre-wrap"><code>${pull_request.description | trim}</code></td> |
|
126 | 125 | </tr> |
General Comments 0
You need to be logged in to leave comments.
Login now