Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
FUSS
octomon
Commits
d564c8bb
Commit
d564c8bb
authored
Mar 24, 2019
by
root
Browse files
Fix some missing tags
parent
90084116
Changes
2
Hide whitespace changes
Inline
Side-by-side
hosts/templates/hosts/drop_host.html
View file @
d564c8bb
...
...
@@ -16,8 +16,9 @@
{% trans "otherwise octomon-sender will keep sending it to the central server." %}
<form
action=
""
method=
"POST"
>
{% csrf_token %}
<button
type=
"submit"
class=
"btn btn-lg btn-danger"
>
<i
class=
"fa fa-trash-o"
aria-hidden=
"true"
>
{% trans 'Delete (fully remove from OctoMon database)' %}
<i
class=
"fa fa-trash-o"
aria-hidden=
"true"
>
</i>
{% trans 'Delete (fully remove from OctoMon database)' %}
</button>
</form>
...
...
hosts/templates/hosts/host.html
View file @
d564c8bb
...
...
@@ -272,11 +272,11 @@
</a>
{% else %}
<a
class=
"btn btn-lg btn-warning"
href=
"{% url 'dismiss_host' id=host.id %}"
onclick=
"return confirm('{% trans 'Are you sure?' %'}')"
>
<i
class=
"fa fa-suitcase"
aria-hidden=
"true"
>
{% trans 'Dismiss' %}
<i
class=
"fa fa-suitcase"
aria-hidden=
"true"
>
</i>
{% trans 'Dismiss' %}
</a>
{% endif %}
<a
class=
"btn btn-lg btn-danger"
href=
"{% url 'drop_host'
id
=host.id %}"
onclick=
"return confirm('{% trans 'Are you sure?' %'}')"
>
<i
class=
"fa fa-trash-o"
aria-hidden=
"true"
>
{% trans 'Delete (fully remove from OctoMon database)' %}
<a
class=
"btn btn-lg btn-danger"
href=
"{% url 'drop_host'
pk
=host.id %}"
onclick=
"return confirm('{% trans 'Are you sure?' %'}')"
>
<i
class=
"fa fa-trash-o"
aria-hidden=
"true"
>
</i>
{% trans 'Delete (fully remove from OctoMon database)' %}
</a>
</p>
{% endif %}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment