blob: 61961ab365126c428ce85f120f6db0b3d2429174 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{% include 'flashmessages.htm' %}
<h1>{{repo.getTitle}}</h1>
<div class="row repo-info">
<div class="span7">
<a class="btn" href="{{repo.getLink('edit')}}" rel="nofollow"><i class="icon-edit"></i> edit</a>
</div>
<div class="span2 pull-right">
<form method="post" action="{{repo.getLink('fork')}}">
<div class="btn-group pull-right">
{% if htmlhelper.mayWriteLocally %}
<button type="submit" class="btn"><i class="icon-share"></i> fork</button>
{% else %}
<a class="btn" href="{{repo.getLink('remotefork')}}"><i class="icon-share"></i> Fork to remote system</a>
{% endif %}
<button class="btn dropdown-toggle" data-toggle="dropdown">
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
{% if htmlhelper.mayWriteLocally %}
<li><a href="{{repo.getLink('remotefork')}}"><i class="icon-share"></i> Fork to remote system</a></li>
<li class="divider"></li>
{% endif %}
<li><a href="help#remote-forking"><i class="icon-question-sign"></i> Help on remote forking</a></li>
</ul>
</div>
</form>
</div>
</div>
|