Skip to content
This repository has been archived by the owner on Mar 17, 2022. It is now read-only.

Commit

Permalink
Fix HTML headings
Browse files Browse the repository at this point in the history
  • Loading branch information
Holly Fox authored and Holly Fox committed Jan 28, 2020
1 parent 8b9ace7 commit 2c03b07
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/templates/analysis/event_edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
<tr><th>Remediation Time</th><td style="padding-right:10px;"><input class="form-control" style="width:auto;" type="text" id="remediation_time" name="remediation_time" value="{{event.remediation_time}}" placeholder="None"/></td></tr>
</table><br>
{% endif %}
<h4>Threat Name
<h4>Threat
<button onclick="new_malware_option()" type="button" class="btn btn-default btn-sm"><span class="glyphicon glyphicon-plus-sign"></span> Add</button>
</h4>
{% for mal in malware %}
Expand Down
2 changes: 1 addition & 1 deletion app/templates/analysis/events.html
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ <h4>Campaigns</h4>
<div class="col-xs-3"><input type="checkbox" name="campaign_{{campaign.id}}" {{filter_state['campaign_{}'.format(campaign.id)]}}> {{campaign.name}}</input></div>
{% endfor %}
</div></br>
<h4>Threat Name</h4>
<h4>Threat</h4>
<div class="row">
{% for mal in malware %}
<div class="col-xs-12"><input type="checkbox" name="malz_{{mal.id}}" {{filter_state['malz_{}'.format(mal.id)]}}> {{mal.name}}</input></div>
Expand Down
2 changes: 1 addition & 1 deletion app/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ <h4 class="modal-title" id="event_modal_label">Add To Event</h4>
<tr><th>Contain Time</th><td style="padding-right:10px;"><input class="form-control" style="width:auto;" type="text" id="contain_time" name="contain_time" placeholder="None"/></td></tr>
<tr><th>Remediation Time</th><td style="padding-right:10px;"><input class="form-control" style="width:auto;" type="text" id="remediation_time" name="remediation_time" placeholder="None"/></td></tr>
</table><br>
<h4>Threat Type
<h4>Threat
<button onclick="new_malware_option()" type="button" class="btn btn-default btn-sm"><span class="glyphicon glyphicon-plus-sign"></span> Add</button>
</h4>
</div>
Expand Down

0 comments on commit 2c03b07

Please sign in to comment.