Mercurial > hg > agora-dellsystem
view templates/bundle/index.djhtml @ 23:d9658d30b814
Implement initial user registration and authentication. Still way buggy.
author | Jordi Gutiérrez Hermoso <jordigh@gmail.com> |
---|---|
date | Sun, 27 Jun 2010 21:56:57 -0500 |
parents | cb9a7c6c3800 |
children | e019ca8e14f6 |
line wrap: on
line source
{% extends "controls.djhtml" %} {% block content %} <div class="info"> <h3> {{bundle.name}} by <a href="/{{bundle.uploader}}/">{{bundle.uploader}}</a> </h3> {% if files %} <div class="whitebox"> <p> files: </p> <ul> {% for f in files%} <li><a href="/{{f.bundle_file}}">{{f}}</a></li> {% endfor %} </ul> </div> {% else %} <div class="whitebox"> <p> No files in this bundle! </p> </div> {% endif %} </div> {% endblock %}