aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/settings/githooks.tmpl
blob: 8120b80e17539142e35e980fe018d62113e382f1 (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
{{template "base/head" .}}
<div class="repository settings githooks">
	{{template "repo/header" .}}
	<div class="ui container">
		<div class="ui grid">
			{{template "repo/settings/navbar" .}}
			<div class="twelve wide column content">
				{{template "base/alert" .}}
				<h4 class="ui top attached header">
				  {{.i18n.Tr "repo.settings.githooks"}}
				</h4>
				<div class="ui attached table segment">
          <div class="ui hook list">
            <div class="item">
              {{.i18n.Tr "repo.settings.githooks_desc" | Str2html}}
            </div>
						{{range .Hooks}}
						<div class="item">
							<span class="text {{if .IsActive}}green{{else}}grey{{end}}"><i class="octicon octicon-primitive-dot"></i></span>
							<span>{{.Name}}</span>
              <a class="text blue ui right" href="{{$.RepoLink}}/settings/hooks/git/{{.Name}}"><i class="fa fa-pencil"></i></a>
						</div>
            {{end}}
          </div>
        </div>
  		</div>
    </div>
	</div>
</div>
{{template "base/footer" .}}