Files @ 5a89fb29aaf4
Branch filter:

Location: conntrackt/conntrackt/templates/conntrackt/index.html

branko
Just fixing some indentations.
{% extends "conntrackt/template.html" %}

{% load conntrackt %}

{% block content %}
<h1>Welcome to Conntrackt</h1>
<div>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.</div>
<hr>
{% if projects %}
<div class="row">
  {% for project in projects %}
  <div class="span4">
    <div class="well">{% include "conntrackt/project_widget.html" %}</div>
  </div>
  {% endfor %}
</div>
{% endif %}

{% endblock %}