diff rhodecode/templates/bookmarks/bookmarks_data.html @ 3798:574825da0d4e beta

added compare option into bookmarks
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 30 Apr 2013 02:06:56 +0200
parents 93de03499097
children ffd45b185016
line wrap: on
line diff
--- a/rhodecode/templates/bookmarks/bookmarks_data.html	Sat Apr 27 11:24:25 2013 +0200
+++ b/rhodecode/templates/bookmarks/bookmarks_data.html	Tue Apr 30 02:06:56 2013 +0200
@@ -7,6 +7,7 @@
             <th class="left">${_('Date')}</th>
             <th class="left">${_('Author')}</th>
             <th class="left">${_('Revision')}</th>
+            <th class="left">${_('Compare')}</th>
         </tr>
     </thead>
     %for cnt,book in enumerate(c.repo_bookmarks.items()):
@@ -24,6 +25,10 @@
                   <pre><a href="${h.url('files_home',repo_name=c.repo_name,revision=book[1].raw_id)}">r${book[1].revision}:${h.short_id(book[1].raw_id)}</a></pre>
               </div>
             </td>
+            <td>
+                <input class="branch-compare" type="radio" name="compare_org" value="${book[0]}"/>
+                <input class="branch-compare" type="radio" name="compare_other" value="${book[0]}"/>
+            </td>
         </tr>
     %endfor
     </table>