mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-06-16 14:46:46 +02:00
actually enable tooltip
This commit is contained in:
parent
45eda26e7c
commit
d5dd2c3423
@ -1,6 +1,13 @@
|
|||||||
{% extends "helpdesk/base.html" %}{% load i18n %}
|
{% extends "helpdesk/base.html" %}{% load i18n %}
|
||||||
{% block helpdesk_title %}{% trans "Edit followup" %}{% endblock %}
|
{% block helpdesk_title %}{% trans "Edit followup" %}{% endblock %}
|
||||||
{% block helpdesk_head %}{% endblock helpdesk_head %}
|
|
||||||
|
{% block helpdesk_head %}
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function() {
|
||||||
|
$("[data-toggle=tooltip]").tooltip();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
{% endblock helpdesk_head %}
|
||||||
|
|
||||||
{% block helpdesk_body %}
|
{% block helpdesk_body %}
|
||||||
|
|
||||||
|
@ -24,6 +24,8 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$("[data-toggle=tooltip]").tooltip();
|
||||||
});
|
});
|
||||||
|
|
||||||
function processAddFileClick() {
|
function processAddFileClick() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user