-
Notifications
You must be signed in to change notification settings - Fork 28
/
release_planning.html.erb
28 lines (25 loc) · 1.03 KB
/
release_planning.html.erb
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
<html>
<head>
<script src='./web_libraries/jquery.min.js' type='text/javascript'></script>
<script src='./web_libraries/sorttable.js'></script><link rel='stylesheet' href='./web_libraries/bootstrap.min.css'>
<script src='./web_libraries/DataTables/datatables.js'></script><link rel='stylesheet' href='./web_libraries/DataTables/datatables.css'>
<script type= 'text/javascript'> $(document).ready( function () {$('#id_table').DataTable();} ); </script>
</head>
<body>
<h2>Modules Requiring Release</h2>
<table border='1' id = 'id_table' style='width:100%' class='sortable table table-hover'> <tr>
<th>Module Name</th>
<th>Last Release Tag Date</th>
<th>Commits Since Then</th>
<th>Number of downloads</th>
</tr>
<% repo_data.each do |puppet_module| %>
<tr>
<td><a href='https://github.com/<%= puppet_module['repo']%>'><%=puppet_module['repo']%></a></td>
<td><%= puppet_module['date']%></td>
<td align=\"center\"><%= puppet_module['commits']%></td>
<td align=\"center\"><%= puppet_module['downloads']%></td>
</tr>
<% end %>
</body>
</html>