view templates/bundle/index.djhtml @ 90:eb3371142f4f

Remove inheriting from whitebox.djhtml for template files
author dellsystem <ilostwaldo@gmail.com>
date Fri, 24 Aug 2012 23:48:14 -0400
parents d5ebcf4a249f
children c7be7def8b57
line wrap: on
line source

{% extends "base.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 %}