Parent: [378e87] (diff)

Child: [902c10] (diff)

Download this file

tree.html    46 lines (39 with data), 1.6 kB

 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{% extends 'jinja_master/master.html' %}
{% do g.register_forge_css('css/forge/hilite.css') %}
{% block title %}
{{c.project.name}} / {{c.app.config.options.mount_label}}
{% if tree %}
/ @{{h.text.truncate(tree._commit._id, 10)}}: {{lib.path_links(tree.path().split('/')[1:-1])}}
{% endif %}
{% endblock %}
{% block header %}
{% if tree %}
<a href="{{tree._commit.url()}}">@{{h.text.truncate(tree._commit._id, 10)}}</a>:
{{lib.path_links(tree.path().split('/')[1:-1])}}
{% else %}
No files
{% endif %}
{% endblock %}
{% block content %}
{% if tree %}
{% if c.app.repo %}
<p>
Read access: <code>git clone git://{{c.app.repo.scm_url_path}} {{c.project.name}}</code><br/>
Read/write access: <code>git clone ssh://{{c.user == c.user.anonymous() and 'USERNAME' or c.user.username}}@{{c.app.repo.scm_url_path}} {{c.project.name}}</code><br/>
{% if c.user != c.user.anonymous() %}
<form action="{{c.app.repo.url()}}fork" method="GET">
<input type="submit" value="Fork" />
</form>
{% endif %}
</p>
{% endif %}
<div style="clear:both;"></div>
{% if tree.readme() %}
<div class="clip">
<h3><span class="ico-l"><b class="ui-icon ui-icon-document"></b> Read Me</span></h3>
{{g.markdown.convert(tree.readme())|safe}}
</div>
{% endif %}
{{c.tree_widget.display(tree=tree)}}
{% endif %}
{% endblock %}