summaryrefslogtreecommitdiff
blob: 2edf849e6403a21b74fe5f443494fe1f29208208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "layout/base.html" %}
{% block content %}
<div class="panel panel-default">
  <div class="table-responsive">
    <table class="table table-striped">
      <table class="table table-striped frontpage-table">
  {% for project in Projects %}
    <tr>
      <td class="frontpage-table-project-atom"><a href="{% url 'projects:detail' project.uuid %}" title="{{ project.title }}">{{ project.title }}</a></td>
      <td><p title="{{ project.description }}">{{ project.description }}</p>
      <td class="text-right">
      </td></td>
    </tr>
  {% endfor %}
</table>
    </table>
  </div>
</div>
{% endblock %}