You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

81 lines
3.5 KiB

<div id="update-name-modal" class="modal">
<div class="modal-dialog">
<form
id="update-name-form"
{% if check %}action="{% url 'hc-update-name' check.code %}"{% endif %}
class="form-horizontal"
method="post">
{% csrf_token %}
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4>Name and Tags</h4>
</div>
<div class="modal-body">
<div class="form-group">
<label for="update-name-input" class="col-sm-2 control-label">
Name
</label>
<div class="col-sm-10">
<input
id="update-name-input"
name="name"
type="text"
maxlength="100"
value="{{ check.name }}"
placeholder="unnamed"
class="input-name form-control" />
<span class="help-block">
Give this check a human-friendly name,
so you can easily recognize it later.
</span>
</div>
</div>
<div class="form-group">
<label for="update-tags-input" class="col-sm-2 control-label">
Tags
</label>
<div class="col-sm-10">
<input
id="update-tags-input"
name="tags"
type="text"
maxlength="500"
data-all-tags="{{ all_tags }}"
value="{{ check.tags }}" />
<span class="help-block">
Use tags for easy filtering and for status badges.
Separate multiple tags with spaces.
</span>
</div>
</div>
<div class="form-group">
<label for="update-desc-input" class="col-sm-2 control-label">
Description
</label>
<div class="col-sm-10">
<textarea
id="update-desc-input"
class="form-control"
rows="5"
name="desc">{{ check.desc }}</textarea>
<span class="help-block">
Additional notes for your own reference. Will appear
in email alerts about this check going down and in
Slack notifications.
</span>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="submit" class="btn btn-primary">Save</button>
</div>
</div>
</form>
</div>
</div>