Parent: [cceb25] (diff)

Child: [f0a846] (diff)

Download this file

repo_master.html    19 lines (17 with data), 678 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
{% extends g.theme.master %}
{% macro clone_info(repo) %}
{% if repo %}
<label for="ro" style="width:8em; float:left;">Read-only</label>
<input id="ro" style="width:40em; float:left;" readonly type="text"
class="selectText"
value="{{repo.readonly_clone_command()}}"/>
<br style="clear:both;"/>
{% if c.user != c.user.anonymous() %}
<label for="rw" style="width:8em; float:left;">Read / write</label>
<input id="rw" style="width:40em; float:left;" readonly type="text"
class="selectText"
value="{{repo.readwrite_clone_command()}}"/>
<br style="clear:both;"/>
{% endif %}
{% endif %}
{% endmacro %}