{% for playbook in playbooks.items -%}
diff --git a/ara/templates/tips/files.html b/ara/templates/tips/files.html
new file mode 100644
index 00000000..53b44d39
--- /dev/null
+++ b/ara/templates/tips/files.html
@@ -0,0 +1,4 @@
+
Tips: Files
+
+
This panel contains all the files involved in your playbook.
+
You can click on the files in order to view them as they were when your playbook ran.
diff --git a/ara/templates/tips/hosts.html b/ara/templates/tips/hosts.html
new file mode 100644
index 00000000..0fec747c
--- /dev/null
+++ b/ara/templates/tips/hosts.html
@@ -0,0 +1,15 @@
+
Tips: Hosts
+
+
This panel contains all the hosts involved in the playbook, their tasks statistics and, if available, their host facts.
+
+ If host facts have been gathered, a summary will be available if you hover the host name. For the complete list of facts, click on the host.
+ Note that host facts are not in real time: they are saved at the time where facts are gathered.
+
+
+ The search box searches through both the host name and the host fact summary, for example:
+
+ - localhost would match only 'localhost' (provided by default: the Ansible inventory hostname)
+ - fedora would match all 'fedora' hosts (provided by the ansible_distribution fact)
+ - 192.168.1 would match all hosts with an IP in the '192.168.1' range (provided by the ansible_all_ipv4_addresses fact)
+
+
diff --git a/ara/templates/tips/parameters.html b/ara/templates/tips/parameters.html
new file mode 100644
index 00000000..101c5f04
--- /dev/null
+++ b/ara/templates/tips/parameters.html
@@ -0,0 +1,4 @@
+
Tips: Parameters
+
+
This panel contains all the parameters and options passed to the ansible-playbook command.
+
You can control which parameters ARA should ignore with the ARA_IGNORE_PARAMETERS
configuration.
diff --git a/ara/templates/tips/plays.html b/ara/templates/tips/plays.html
new file mode 100644
index 00000000..21632e7e
--- /dev/null
+++ b/ara/templates/tips/plays.html
@@ -0,0 +1,4 @@
+
Tips: Plays
+
+
This panel contains all the plays involved in your playbook run.
+
To see your playbook file, click the playbook file path in the playbook report list.
diff --git a/ara/templates/tips/records.html b/ara/templates/tips/records.html
new file mode 100644
index 00000000..30f41cc5
--- /dev/null
+++ b/ara/templates/tips/records.html
@@ -0,0 +1,14 @@
+
Tips: Records
+
+
This panel contains persistent data recorded from your playbooks with the ara_record Ansible module.
+
ara_record is an Ansible module bundled with ARA that allows you to record and attach any arbitrary data that is displayed here.
+
+ Some examples of things that can be registered with ara_record:
+
+ - The git version of your playbooks
+ - The host from which your playbook ran
+ - An URL to retrieve logs for the playbook
+ - Important variables or debug information obtained throughout your playbook
+
+
+
For more information on how to use ara_record (and ara_read), refer to the documentation.
diff --git a/ara/templates/tips/tasks.html b/ara/templates/tips/tasks.html
new file mode 100644
index 00000000..cbd542c3
--- /dev/null
+++ b/ara/templates/tips/tasks.html
@@ -0,0 +1,22 @@
+
Tips: Tasks
+
+
This panel contains all the tasks and their results on your hosts in your playbook.
+
Click on the action to view the task file in which that action is located.
+
Click on the task status in order to view the detailed results of that task.
+
+ All table columns are sortable. This allows you to, for example:
+
+ - Sort tasks by duration to find which tasks took the longest time
+ - Sort (or reverse) the elapsed column to have the beginning of the playbook (or the end) first
+
+
+
+ The search box searches through all fields as well as task tags. This allows you to search, for example:
+
+ - do something would match tasks with 'do something' in their name
+ - localhost would match tasks for the host 'localhost'
+ - get_url would match tasks that use the 'get_url' Ansible module
+ - failed would match tasks for which the status is 'failed'
+ - production would match tasks that have the tag 'production'
+
+