blob: bc349dad2731b26bb47c49b5712f6cea3972a812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{% 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>
<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 %}
|