Skip to content

Instantly share code, notes, and snippets.

@emilepetrone
Created August 27, 2010 22:01
Show Gist options
  • Save emilepetrone/554275 to your computer and use it in GitHub Desktop.
Save emilepetrone/554275 to your computer and use it in GitHub Desktop.
{% extends "_base.html" %}
{% block title %}
Index
{% endblock %}
{% block maincontent %}
<h2>Websites from index.html</h2>
<b><i>{% if error %}ERROR : {{ error }}{% endif %}</i></b>
<table>
{% for url in url_list %}
<tr>
<td>
<a href="/vote?url_id={{URL.key}}">{{ url.votes }} votes</a> - <b>{{ url.website }}</b> - {{ url.user.account }} - {{ url.created|date:"M d, Y" }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment