diff --git a/conntrackt/templates/conntrackt/index.html b/conntrackt/templates/conntrackt/index.html --- a/conntrackt/templates/conntrackt/index.html +++ b/conntrackt/templates/conntrackt/index.html @@ -1,20 +1,23 @@ {% extends "conntrackt/template.html" %} +{# For html_link #} {% load conntrackt %} {% block content %}

Welcome to Conntrackt

-
Below you may find the list of projects that are available to you. Clicking on the project will take you to the summary page for that particular project.
+
Below you may find the list of projects that are available to you. Clicking on the project will take you to the summary page for that particular project. Clicking on an entity inside of a project will take you to the summary page of an entity.

+
{% if projects %} -
{% for project in projects %}
{% include "conntrackt/project_widget.html" %}
{% endfor %} +{% else %} +
Currently there are no project defined in the database. Use the administration pages in order to add a new project.
+{% endif %}
-{% endif %} {% endblock %}