symposion_app/symposion/templates/cms/file_index.html

34 lines
1.2 KiB
HTML
Raw Normal View History

2012-10-18 06:43:00 +00:00
{% extends "site_base.html" %}
{% load url from future %}
2012-10-18 06:43:00 +00:00
{% block head_title %}Uploaded Files{% endblock %}
{% block body_outer %}
<div class="row">
<div class="span12">
<h1>Files</h1>
{% for file in files %}
<div style="margin-top: 1em;">
<form class="pull-right" action="{% url 'file_delete' file.pk %}" method="post">
2012-10-18 06:43:00 +00:00
{% csrf_token %}
<button type="submit" class="btn btn-error"><i class="icon-trash"></i> delete</button>
</form>
<h3><a href="{{ file.download_url }}">{{ file.file }}</a></h3>
<span style="font-style:italic; color: #999;">Uploaded {{ file.created|date:"N j, Y" }}</span>
</div>
{% empty %}
<p>No uploaded files.</p>
{% endfor %}
<div style="margin-top: 2em">
<a class="btn btn-success" href="{% url 'file_create' %}">
2012-10-18 06:43:00 +00:00
<i class="icon-plus icon-white"></i>
Add File
</a>
</div>
</div>
</div>
{% endblock %}