source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/applications/admin/views/default.mobile/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: 697 bytes
Line 
1{{extend 'default.mobile/layout.html'}}
2
3{{block sectionclass}}resolve{{end}}
4
5<h2>{{=T('Resolve Conflict file')}} "{{=filename}}"</h2>
6
7<script>
8function plus() {jQuery('.plus').show(); jQuery('.minus').hide(); }
9function minus() {jQuery('.plus').hide(); jQuery('.minus').show(); }
10function all() {jQuery('.plus').show(); jQuery('.minus').show(); }
11</script>
12
13<div class="controls">
14<button onclick="plus()">new</button>
15<button onclick="minus()">old</button>
16<button onclick="all()">all</button>
17</div>
18
19<div class="form">
20  <form action="{{=URL(r=request,args=request.args)}}" method="post">
21    {{=diff}}
22    <input type="submit" name="merge" value="{{=T('merge')}}" /><br/>
23  </form>
24</div>
25
Note: See TracBrowser for help on using the repository browser.