summaryrefslogtreecommitdiffstats
path: root/templates/user/dashboard/feeds.tmpl
blob: 57c97def2ed70612c73c4946a6264e2593b4ba38 (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
{{range .Feeds}}
<div class="news clear">
    <div class="avatar left">
        <img class="avatar-30" src="{{AvatarLink .GetActEmail}}" alt="">
    </div>
    <div class="content left {{if eq .GetOpType 5}}push-news{{end}} grid-4-5">
        <p class="text-bold">
            <a href="{{AppSubUrl}}/{{.GetActUserName}}">{{.GetActUserName}}</a>
            {{if eq .GetOpType 1}}
            {{$.i18n.Tr "action.create_repo" AppSubUrl .GetRepoLink .GetRepoLink | Str2html}}
            {{else if eq .GetOpType 5}}
            {{$.i18n.Tr "action.commit_repo" AppSubUrl .GetRepoLink .GetBranch .GetBranch AppSubUrl .GetRepoLink .GetRepoLink | Str2html}}
            {{else if eq .GetOpType 6}}
            {{ $index := index .GetIssueInfos 0}}
            {{$.i18n.Tr "action.create_issue" AppSubUrl .GetRepoLink $index .GetRepoLink $index | Str2html}}
            {{else if eq .GetOpType 8}}
            {{$.i18n.Tr "action.transfer_repo" .GetContent AppSubUrl .GetRepoLink .GetRepoLink | Str2html}}
            {{else if eq .GetOpType 9}}
            {{$.i18n.Tr "action.push_tag" AppSubUrl .GetRepoLink .GetBranch .GetBranch AppSubUrl .GetRepoLink .GetRepoLink | Str2html}}
            {{else if eq .GetOpType 10}}
            {{ $index := index .GetIssueInfos 0}}
            {{$.i18n.Tr "action.comment_issue" AppSubUrl .GetRepoLink $index .GetRepoLink $index | Str2html}}
            {{end}}
        </p>
        {{if eq .GetOpType 5}}
        <div class="news-content content">
            <ul class="list-no-style">
                {{ $push := ActionContent2Commits .}}
                {{ $repoLink := .GetRepoLink}}
                {{range $push.Commits}}
                <li><img class="avatar-16" src="{{AvatarLink .AuthorEmail}}?s=16"> <a href="{{AppSubUrl}}/{{$repoLink}}/commit/{{.Sha1}}">{{ShortSha .Sha1}}</a> <span class="text-truncate grid-4-5">{{.Message}}</span></li>
                {{end}}
                {{if $push.CompareUrl}}<li><a href="{{$push.CompareUrl}}">{{$.i18n.Tr "action.compare_2_commits"}} »</a></li>{{end}}
            </ul>
        </div>
        {{else if eq .GetOpType 6}}
        <p class="news-content comment-news">{{index .GetIssueInfos 1}}</p>
        {{else if eq .GetOpType 10}}
        <p class="news-content comment-news">{{index .GetIssueInfos 1}}</p>
        {{end}}
        <p class="news-time text-italic">{{TimeSince .GetCreate $.i18n.Lang}}</p>
    </div>
    <i class="mega-octicon octicon-{{ActionIcon .GetOpType}} right"></i>
</div>
{{end}}