Remove outdated information from the home page

This commit is contained in:
David Moreau-Simard
2016-05-13 16:24:10 -04:00
parent 3fb1534de4
commit 72e8a097e3

View File

@@ -1,44 +1,26 @@
{% extends "layout.html" %}
{% block content %}
<div class="row text-center">
<h3>
<a href="https://github.com/dmsimard/ara" target="_blank">ARA</a> is
an attempt to make Ansible runs easier to visualize, understand and
troubleshoot.<br>
<br>
</h3>
<h4>
It provides an
<a href="https://www.ansible.com/" target="_blank">Ansible</a> callback
to record playbook run data in a database and a web interface built
with <a href="http://flask.pocoo.org/" target="_blank">Flask</a>
to browse that data.
</h4>
<h3>
<a href="https://github.com/dmsimard/ara" target="_blank">ARA</a> is
an attempt to make Ansible runs easier to visualize, understand and
troubleshoot.<br>
</h3>
<h4>
It provides an
<a href="https://www.ansible.com/" target="_blank">Ansible</a> callback
to record playbook run data in a database and a web interface built
with <a href="http://flask.pocoo.org/" target="_blank">Flask</a>
to browse that data.
</h4>
<br>
Start browsing recorded data with the top navigation bar.
</div>
<br>
<div class="row">
<div class="col-md-12">
<h1>Documentation</h1>
Documentation is available on <a href="http://ara.readthedocs.io/en/latest/" target="_blank">readthedocs.io</a>.
</div>
</div>
<div class="row">
<div class="col-md-12">
<h1>Browsing tips</h1>
</div>
</div>
<ul>
<li>Browse hosts and playbooks with the top menu</li>
<li>When browsing details:</li>
<ul>
<li>Click on timestamps to generate a link to this specific event</li>
<li>Click anywhere on a row to expand verbose output</li>
<li>Click on a host to see events specific to them</li>
<li>Click on a task to see all events for that task across all playbook runs</li>
<li>Click on a status to filter tasks by that status</li>
<li>When browsing multiple playbook results, click on a playbook UUID to see events specific to this playbook run</li>
</ul>
</ul>
<div class="row text-center">
<div class="col-md-12">
<h1>Documentation</h1>
Documentation is available on <a href="http://ara.readthedocs.io/en/latest/" target="_blank">readthedocs.io</a>.
</div>
</div>
{% endblock %}