aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Chatzimichos <tampakrap@gmail.com>2013-09-10 04:28:14 -0700
committerTheo Chatzimichos <tampakrap@gmail.com>2013-09-10 04:28:14 -0700
commit05c180724211bafde30b14c64717a846998ebd6c (patch)
treeaf642b9de7c143a0fbaedcce8844f9b179522326 /okupy/templates/foundation-members.html
parentMerge pull request #87 from tampakrap/bin (diff)
parentFix the tests about rendered result, they were not properly concatenating str... (diff)
downloadidentity.gentoo.org-05c180724211bafde30b14c64717a846998ebd6c.tar.gz
identity.gentoo.org-05c180724211bafde30b14c64717a846998ebd6c.tar.bz2
identity.gentoo.org-05c180724211bafde30b14c64717a846998ebd6c.zip
Merge pull request #88 from tampakrap/templates
Identation, whitespace and other cosmetics fixes in templates
Diffstat (limited to 'okupy/templates/foundation-members.html')
-rw-r--r--okupy/templates/foundation-members.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/okupy/templates/foundation-members.html b/okupy/templates/foundation-members.html
index b78beb7..f2fcd3b 100644
--- a/okupy/templates/foundation-members.html
+++ b/okupy/templates/foundation-members.html
@@ -9,18 +9,18 @@
<div class="span10">
<h2>Foundation Members</h2><br />
<table class="table table-striped sortable" >
- <tr>
- <td class="infohead"><b>Username</b></td>
- <td class="infohead"><b>Name</b></td>
- <td class="infohead"><b>Location</b></td>
- </tr>
- {% for user in devlist %}
<tr>
- <td style="color:#5c4f85;"><b>{{ user.username }}</b></td>
- <td>{{ user.full_name }}</td>
- <td><a href="http://maps.google.com/maps?q={{ user.location }}">{{ user.location }}</a></td>
+ <td class="infohead"><b>Username</b></td>
+ <td class="infohead"><b>Name</b></td>
+ <td class="infohead"><b>Location</b></td>
</tr>
- {% endfor %}
+ {% for user in devlist %}
+ <tr>
+ <td style="color:#5c4f85;"><b>{{ user.username }}</b></td>
+ <td>{{ user.full_name }}</td>
+ <td><a href="http://maps.google.com/maps?q={{ user.location }}">{{ user.location }}</a></td>
+ </tr>
+ {% endfor %}
</table>
</div>
</div>