view templates/bundle/index.djhtml @ 63:d5ebcf4a249f

Added some urls for the bundle links, and a template
author Rettaw
date Thu, 06 Oct 2011 23:40:01 +0200
parents e019ca8e14f6
children eb3371142f4f
line wrap: on
line source

{% extends "whitebox.djhtml" %}

{% block content %}
<h1> Latest bundles </h1>

{% if bundles|length > 0 %}

{% for bundle in bundles %}
	<div class="info">
	  <h3>
	    {{bundle.name}} by <a href="/{{bundle.uploader}}/">{{bundle.uploader}}</a>
	  </h3>
	  <div class="whitebox">
	    <p>
	      Bundle published the {{bundle.pub_date}} under the {{bundle.free_license}}.
	    </p>
	  </div>
	{% endfor %}

{% else %}
	No bundles registered yet!
{% endif %}
</div>
{% endblock %}