Show More
@@ -348,7 +348,7 b'' | |||||
348 | % if item.repository: |
|
348 | % if item.repository: | |
349 | <div> |
|
349 | <div> | |
350 | <a class="bookmark-item" href="${h.route_path('my_account_goto_bookmark', bookmark_id=item.position)}"> |
|
350 | <a class="bookmark-item" href="${h.route_path('my_account_goto_bookmark', bookmark_id=item.position)}"> | |
351 | ${item.position} |
|
351 | <code>${item.position}</code> | |
352 | % if item.repository.repo_type == 'hg': |
|
352 | % if item.repository.repo_type == 'hg': | |
353 | <i class="icon-hg" title="${_('Repository')}" style="font-size: 16px"></i> |
|
353 | <i class="icon-hg" title="${_('Repository')}" style="font-size: 16px"></i> | |
354 | % elif item.repository.repo_type == 'git': |
|
354 | % elif item.repository.repo_type == 'git': | |
@@ -362,14 +362,14 b'' | |||||
362 | % elif item.repository_group: |
|
362 | % elif item.repository_group: | |
363 | <div> |
|
363 | <div> | |
364 | <a class="bookmark-item" href="${h.route_path('my_account_goto_bookmark', bookmark_id=item.position)}"> |
|
364 | <a class="bookmark-item" href="${h.route_path('my_account_goto_bookmark', bookmark_id=item.position)}"> | |
365 | ${item.position} |
|
365 | <code>${item.position}</code> | |
366 | <i class="icon-folder-close" title="${_('Repository group')}" style="font-size: 16px"></i> |
|
366 | <i class="icon-folder-close" title="${_('Repository group')}" style="font-size: 16px"></i> | |
367 | ${(item.title or h.shorter(item.repository_group.group_name, 30))} |
|
367 | ${(item.title or h.shorter(item.repository_group.group_name, 30))} | |
368 | </a> |
|
368 | </a> | |
369 | </div> |
|
369 | </div> | |
370 | % else: |
|
370 | % else: | |
371 | <a class="bookmark-item" href="${h.route_path('my_account_goto_bookmark', bookmark_id=item.position)}"> |
|
371 | <a class="bookmark-item" href="${h.route_path('my_account_goto_bookmark', bookmark_id=item.position)}"> | |
372 | ${item.position} |
|
372 | <code>${item.position}</code> | |
373 | ${item.title} |
|
373 | ${item.title} | |
374 | </a> |
|
374 | </a> | |
375 | % endif |
|
375 | % endif |
General Comments 0
You need to be logged in to leave comments.
Login now