past3d/pastebin/templates/pastebin/latest_geometries.html

13 lines
347 B
HTML
Raw Normal View History

<div class="textcontainer">
2013-11-27 23:10:45 +01:00
<h2><i class="icon-upload-alt"></i> Latest pastes</h2>
<ul class="uploads-list">
{% for geometry in latest_geometries %}
<li>
<i class="icon-file"></i>
2015-11-08 18:48:24 +01:00
<a href="{{geometry.get_absolute_url}}">{{geometry.name}}</a><br/>
{{geometry.date}}
</li>
{% endfor %}
</ul>
2015-11-08 18:48:24 +01:00
</div>