summaryrefslogtreecommitdiffstats
path: root/templates/repo/settings/hooks.tmpl
blob: 6efd8f0a6f76f5c83720bf7bc77d52dcd15eacbc (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
{{template "ng/base/head" .}}
{{template "ng/base/header" .}}
<div id="repo-wrapper">
    {{template "repo/header" .}}
	<div id="setting-wrapper" class="main-wrapper">
	    <div id="repo-setting" class="container clear">
	        {{template "repo/settings/nav" .}}
	        <div class="grid-4-5 left">
	            <div class="setting-content">
	                {{template "ng/base/alert" .}}
	                <div id="setting-content">
	                    <div id="repo-hooks-panel" class="panel panel-radius">
	                        <div class="panel-header">
                            	<a class="btn btn-small btn-black btn-header btn-radius right" href="{{.RepoLink}}/settings/hooks/new">{{.i18n.Tr "repo.settings.add_webhook"}}</a>
	                        	<strong>{{.i18n.Tr "repo.settings.hooks"}}</strong>
	                        </div>
	                        <ul class="panel-body setting-list">
                            	<li>{{.i18n.Tr "repo.settings.hooks_desc" | Str2html}}</li>
                            	{{range .Webhooks}}
								<li>
									{{if .IsActive}}
									<span class="left text-success"><i class="octicon octicon-check"></i></span>
									{{else}}
									<span class="left text-grey"><i class="octicon octicon-primitive-dot"></i></span>
									{{end}}
									<a class="link" href="{{$.RepoLink}}/settings/hooks/{{.Id}}">{{.Url}}</a>
									<a href="{{$.RepoLink}}/settings/hooks?remove={{.Id}}" class="text-red right"><i class="fa fa-times"></i></a>
                        			<a href="{{$.RepoLink}}/settings/hooks/{{.Id}}" class="text-blue right"><i class="fa fa-pencil"></i></a>
								</li>
                            	{{end}}
	                       	</ul>
	                    </div>
	                </div>
	            </div>
	        </div>
	    </div>
	</div>
</div>
{{template "ng/base/footer" .}}