pr-deployer/templates/pulls.tmpl

24 lines
480 B
Cheetah
Raw Normal View History

2021-10-28 21:10:41 +05:30
<!DOCTYPE html>
<html lang="en-US">
<head>
{{template "head" .}}
<script type="text/javascript">
function startService(idx) {
$.ajax({
type: 'POST',
url: '/pr/'+idx+'/run',
}).done((resp) => {
alert(idx);
});
}
</script>
</head>
<body>
{{template "navbar" .}}
2021-10-26 13:49:08 +05:30
<ul>
{{range .pulls}}
2021-10-28 21:10:41 +05:30
<li>{{.Number}}: <a href="{{.HTMLURL}}">{{.Title}}</a> <button onclick="javascript:startService({{.Number}});">Start Service</button></li>
{{end}}
2021-10-28 21:10:41 +05:30
</ul>
</body>
</html>