{% extends 'wizard/slides/common/base.twig' %}

{% block slide_body %}
	{{ icwp_macros.slideTitle( 'Audit Trail and Logging' ) }}

	<p class="description">Turn on the Audit Trail below so you can track activity on your site and troubleshoot problems more easily.</p>

	<h6 class="more_details">
		<a class="btn btn-link" data-bs-toggle="collapse" data-target=".more_details_body">
			Click For More Details &rarr;</a>
	</h6>
	<div id="MoreDetails" class="collapse more_details_body">
		<div class="card card-body">
			<p class="description">One of the most difficult things to do is fix a problem where you don't know the cause.
			   This is one of the problems that the Audit Trail feature will help you solve.</p>
			<p class="description">It provides a log of major events on your WordPress site. It lets you see who's
			   doing what, and when, and from where (IP address).</p>
			<p class="description">Note: The Audit Trail is limited to 50 entries.
			   You can increase this limit at any time by purchasing a Pro license.</p>
		</div>
	</div>

<h5>Turn On/Off The Audit Trail Feature</h5>
<form class="form-horizontal icwp-wizard-form">

	{% set radiovalues =
		{
			'Y': '<span>Turn On</span> - Log important site events',
			'N': '<span>Turn Off</span> - Do not log important site events'
		}
	%}
	{{ icwp_macros.formInput_Radio( 'AuditTrailOption', radiovalues, 'Audit Trail' ) }}

	{{ icwp_macros.formInput_Hidden( 'wizard-step', 'audit_trail' ) }}
	{{ icwp_macros.formInput_Submit( 'Update The Audit Trail Setting' ) }}
</form>

{% endblock %}