summaryrefslogtreecommitdiffstats
path: root/templates/repo/view_list.tmpl
blob: d516eac94cb573d255da512146042e7bc15cb95a (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<table id="repo-files-table" class="table-border table-block table-radius">
    <thead>
    <tr>
        <th colspan="4" class="clear">
            <span class="author left">
                {{if .LastCommitUser}}
                <img class="avatar-24 radius" src="{{.LastCommitUser.AvatarLink}}" />
                <a href="{{AppSubUrl}}/{{.LastCommitUser.Name}}"><strong>{{.LastCommit.Author.Name}}</strong></a>:
                {{else}}
                <img class="avatar-24 radius" src="{{AvatarLink .LastCommit.Author.Email}}" />
                <strong>{{.LastCommit.Author.Name}}</strong>:
                {{end}}
                &nbsp;
            </span>
            <span class="last-commit"><a href="{{.RepoLink}}/commit/{{.LastCommit.Id}}" rel="nofollow">
                <strong>{{ShortSha .LastCommit.Id.String}}</strong></a>
                <span class="text-truncate">{{.LastCommit.Summary}}</span>
            </span>
            <span class="age right">{{TimeSince .LastCommit.Author.When $.Lang}}</span>
        </th>
    </tr>
    </thead>
    <tbody>
        {{if .HasParentPath}}
        <tr class="has-parent">
            <td class="icon"></td>
            <td class="name"><a href="{{EscapePound .BranchLink}}{{.ParentPath}}">..</a></td>
            <td class="msg"></td>
            <td class="age"></td>
        </tr>
        {{end}}
        {{range $item := .Files}}
            {{$entry := index $item 0}}
            {{$commit := index $item 1}}
            <tr>
            {{if $entry.IsSubModule}}
            <td class="icon">
                    <span class="octicon octicon-file-submodule"></span>
                </td>
                <td class="name">
                    <a href="{{$commit.RefUrl}}" class="text-truncate">{{$entry.Name}}</a> @ <a href="{{$commit.RefUrl}}/commit/{{$commit.RefId}}">{{ShortSha $commit.RefId}}</a>
                </td>
            {{else}}
            <td class="icon">
                    <span class="octicon octicon-file-{{if or $entry.IsDir}}directory{{else}}text{{end}}"></span>
                </td>
                <td class="name">
                    <a href="{{EscapePound $.BranchLink}}/{{$.TreePath}}{{$entry.Name}}" class="text-truncate">{{$entry.Name}}</a>
                </td>
                {{end}}
                <td class="msg">
                    <a class="text-truncate" href="{{AppSubUrl}}/{{$.Username}}/{{$.Reponame}}/commit/{{$commit.Id}}" rel="nofollow">{{$commit.Summary}}</a>
                </td>
                <td class="age">{{TimeSince $commit.Committer.When $.Lang}}</td>
            </tr>
        {{end}}
    </tbody>
</table>
{{if .ReadmeExist}}
    {{template "repo/view_file" .}}
{{end}}