It must be in some of these files where AJAX is defined, for the duration of the turning of the logging on or off:
Any open sense web developers around who can point me at the right file?
Thanks in advance!
Code Select
# grep -r "fa fa-info-circle " /usr/local/opnsense/
/usr/local/opnsense/mvc/app/views/layout_partials/form_input_tr.volt: <i class="fa fa-info-circle text-muted"></i>
/usr/local/opnsense/mvc/app/views/OPNsense/IDS/index.volt: <i class="fa fa-info-circle text-muted"></i>
/usr/local/opnsense/mvc/app/views/OPNsense/IDS/index.volt: <i class="fa fa-info-circle text-muted"></i>
/usr/local/opnsense/mvc/app/views/OPNsense/Firewall/alias.volt: <i class="fa fa-info-circle text-muted"></i>
/usr/local/opnsense/mvc/app/views/OPNsense/Firewall/alias.volt: <i class="fa fa-info-circle text-muted"></i>
/usr/local/opnsense/mvc/app/views/OPNsense/Core/firmware.volt: '<i class="fa fa-info-circle fa-fw"></i></button>' +
/usr/local/opnsense/mvc/app/views/OPNsense/Core/firmware.volt: <td style="width: 150px;"><i class="fa fa-info-circle text-muted"></i> {{ lang._('Usage') }}</td>
Since the last 2x are for the firmware, and the previouse 2x are for aliases, the 1st one sounds like the right candidate.Code Select
{% if help|default(false) %}
<a id="help_for_{{ id }}" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a>
{% elseif help|default(false) == false %}
<i class="fa fa-info-circle text-muted"></i>
{% endif %}
Any open sense web developers around who can point me at the right file?
Thanks in advance!