web: make the push and pull buttons actually do something again
    
        | author | Steve Losh <steve@stevelosh.com> | 
    
        | date | Sat, 19 Jun 2010 00:17:17 -0400 | 
    
    
        | parents | 4a5b97071a4d | 
    
        | children | 103828d0bc1a | 
    
        | branches/tags | (none) | 
    
        | files | review/templates/base.html | 
Changes
    
--- a/review/templates/base.html	Fri Jun 18 23:05:28 2010 -0400
+++ b/review/templates/base.html	Sat Jun 19 00:17:17 2010 -0400
@@ -31,7 +31,7 @@
                             {% for name, path in datastore.repo.ui.configitems("paths") %}
                                 <form action="/push/" method="POST" id="remote-push-{{ name }}">
                                     <input type="hidden" name="path" value="{{ name }}" />
-                                    <a class="button" href="#"><span>push to {{ name }}</span></a>
+                                    <a class="button submit" href="#"><span>push to {{ name }}</span></a>
                                 </form>
                             {% endfor %}
                         </div>
@@ -40,7 +40,7 @@
                             {% for name, path in datastore.repo.ui.configitems("paths") %}
                                 <form action="/pull/" method="post">
                                     <input type="hidden" name="path" value="{{ name }}" />
-                                    <a class="button" href="#"><span>pull from {{ name }}</span></a>
+                                    <a class="button submit" href="#"><span>pull from {{ name }}</span></a>
                                 </form>
                             {% endfor %}
                         </div>