{% extends "widgets/action.html" %}
{% block action_widget_content %}
{% with standard_web_browser=True %}
{% if standard_web_browser %}
{% if browser_type == 'mobile' %}
{% if not action.icon_name %}
{{action.title}}
{% endif %}
{% else %}
{% if action.icon_name %}
{% if action.icon2 %}
{% endif %}
{% else %}
{{action.title}}
{% endif %}
{% endif %}
{% else %}
{% comment %}
{% if action.icon_name %}
{% else %}
{{action.title}}
{% endif %}
{% endcomment %}
{% endif %}
{% endwith %}
{% endblock %}