Show More
@@ -238,6 +238,34 b' collapse_all = len(diffset.files) > coll' | |||
|
238 | 238 | </tr> |
|
239 | 239 | %endif |
|
240 | 240 | %endfor |
|
241 | ||
|
242 | % for lineno, comments in filediff.left_comments.items(): | |
|
243 | ||
|
244 | %if c.diffmode == 'unified': | |
|
245 | <tr class="cb-line"> | |
|
246 | <td class="cb-data cb-context"></td> | |
|
247 | <td class="cb-lineno cb-context"></td> | |
|
248 | <td class="cb-lineno cb-context"></td> | |
|
249 | <td class="cb-content cb-context"> | |
|
250 | ${inline_comments_container(comments)} | |
|
251 | </td> | |
|
252 | </tr> | |
|
253 | %elif c.diffmode == 'sideside': | |
|
254 | <tr class="cb-line"> | |
|
255 | <td class="cb-data cb-context"></td> | |
|
256 | <td class="cb-lineno cb-context"></td> | |
|
257 | <td class="cb-content cb-context"></td> | |
|
258 | ||
|
259 | <td class="cb-data cb-context"></td> | |
|
260 | <td class="cb-lineno cb-context"></td> | |
|
261 | <td class="cb-content cb-context"> | |
|
262 | ${inline_comments_container(comments)} | |
|
263 | </td> | |
|
264 | </tr> | |
|
265 | %endif | |
|
266 | ||
|
267 | % endfor | |
|
268 | ||
|
241 | 269 | </table> |
|
242 | 270 | </div> |
|
243 | 271 | %endfor |
General Comments 0
You need to be logged in to leave comments.
Login now