Browse Source

Removed conditions from tooltip base template to see if it fixes caching issue

pull/172/head
Michael Olund 5 years ago
parent
commit
58366aa122
3 changed files with 6 additions and 4 deletions
  1. +4
    -2
      edivorce/apps/core/templates/partials/tooltips/base.html
  2. +1
    -1
      edivorce/apps/core/templates/partials/tooltips/legally_married.html
  3. +1
    -1
      edivorce/apps/core/templates/partials/tooltips/marriage_like.html

+ 4
- 2
edivorce/apps/core/templates/partials/tooltips/base.html View File

@ -1,5 +1,7 @@
<span class="tooltip-link" data-toggle="tooltip" data-placement="right" data-html="true" title=" <span class="tooltip-link" data-toggle="tooltip" data-placement="right" data-html="true" title="
<b>{% block title %}{% endblock %}</b> <b>{% block title %}{% endblock %}</b>
<br /><br /> <br /><br />
{% block inner %}{% endblock %}"><span class=" content">{% if text %}{{ text }}{% else %}{% block label %}{% endblock %}{% endif %}
</span><i class="fa fa-question-circle" aria-hidden="true"></i></span>
{% block inner %}{% endblock %}">
<span class=" content">{% block label %}{% endblock %}</span>
<i class="fa fa-question-circle" aria-hidden="true"></i>
</span>

+ 1
- 1
edivorce/apps/core/templates/partials/tooltips/legally_married.html View File

@ -15,5 +15,5 @@
{% endblock %} {% endblock %}
{% block label %} {% block label %}
Legally married
{% if text %}{{ text }}{% else %}Legally married{% endif %}
{% endblock %} {% endblock %}

+ 1
- 1
edivorce/apps/core/templates/partials/tooltips/marriage_like.html View File

@ -11,5 +11,5 @@
{% endblock %} {% endblock %}
{% block label %} {% block label %}
marriage like
{% if text %}{{ text }}{% else %}marriage like{% endif %}
{% endblock %} {% endblock %}

Loading…
Cancel
Save