Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kfdm committed Feb 13, 2019
1 parent 9f7ec39 commit 19c6412
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion promgen/static/css/promgen.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ a[rel]:after {

.dl-horizontal {
word-wrap: break-word;
}
}
3 changes: 1 addition & 2 deletions promgen/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<title>{% block title %}Promgen {{ VERSION }}{% endblock %}</title>
<link rel="stylesheet" href="{% static "/css/bootstrap.min.css" %}">
<link rel="stylesheet" href="{% static "/css/bootstrap-theme.min.css" %}">
<link rel="stylesheet" href="{% static "/css/bootstrap-datetimepicker.min.css" %}">
<link rel="stylesheet" href="{% static "/css/bootstrap-switch.min.css" %}">
<link rel="stylesheet" href="{% static "/css/promgen.css" %}">
</head>
Expand Down Expand Up @@ -38,4 +37,4 @@
{% block javascript %}{% endblock %}
</body>

</html>
</html>
10 changes: 5 additions & 5 deletions promgen/templates/promgen/silence_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@
</li>
</ul>
</div>
<table class="table table-bordered table-condensed duration">
<table class="table table-bordered table-condensed">
<tr>
<th>Duration</th>
<th>Start</th>
<th>End</th>
<th>Starts</th>
<th>Ends</th>
<th>Comment</th>
<th>CreatedBy</th>
</tr>
<tr>
<td><input v-model="newSilence.duration" placeholder="1m/1h/etc" class="form-control" /></td>
<td><input v-model="newSilence.startsAt" type='datetime-local' class="form-control" /></td>
<td><input v-model="newSilence.endsAt" type='datetime-local' class="form-control" /></td>
<td><input v-model="newSilence.startsAt" placeholder="2006-10-25 14:30" type='datetime-local' class="form-control" /></td>
<td><input v-model="newSilence.endsAt" placeholder="2006-10-25 14:30" type='datetime-local' class="form-control" /></td>
<td><input v-model="newSilence.comment" placeholder="Silenced from Promgen" class="form-control" /></td>
<td><input v-model="newSilence.createdBy" placeholder="Promgen" class="form-control" /></td>
</tr>
Expand Down

0 comments on commit 19c6412

Please sign in to comment.