source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/applications/admin/views/default/resolve.html

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 783 bytes
Line 
1{{extend 'layout.html'}}
2{{block sectionclass}}resolve{{end}}
3<!-- begin "resolve" block -->
4<h2>{{=T('Resolve Conflict file')}} "{{=filename}}"</h2>
5<script>
6function plus() {jQuery('.plus').show(); jQuery('.minus').hide(); }
7function minus() {jQuery('.plus').hide(); jQuery('.minus').show(); }
8function all() {jQuery('.plus').show(); jQuery('.minus').show(); }
9</script>
10<div class="controls">
11<button class="btn" onclick="plus()">new</button>
12<button class="btn" onclick="minus()">old</button>
13<button class="btn" onclick="all()">all</button>
14</div>
15<div class="form">
16  <form action="{{=URL(r=request,args=request.args)}}" method="post">
17    {{=diff}}
18    <input class="btn" type="submit" name="merge" value="{{=T('merge')}}" /><br/>
19  </form>
20</div>
21<!-- end "resolve" block -->
Note: See TracBrowser for help on using the repository browser.