view templates/snippet/explore.html @ 173:b5e9ad94da00

Add publish date, # views to snippet explore page
author dellsystem <ilostwaldo@gmail.com>
date Sat, 20 Oct 2012 00:38:23 -0400
parents b8e0bdc37e32
children
line wrap: on
line source

{% extends "snippet/base.djhtml" %}

{% load i18n %}

{% block title %}
Explore
{% endblock %}

{% block content %}
<h2>{% trans "Recent snippets" %}</h2>

{% if recent_snippets %}
<table class="default">
    <thead>
        <tr>
            <th>{% trans "Snippet title" %}</th>
            <th>{% trans "Language" %}</th>
            <th>{% trans "Created on" %}</th>
            <th>{% trans "Views" %}</th>
            <th>{% trans "User" %}</th>
        </tr>
    </thead>
    <tbody>
        {% for snippet in recent_snippets %}
        <tr>
            <td><a href="{{ snippet.get_absolute_url }}">
                {{ snippet.get_title }}
            </a></td>
            <td>{{ snippet.get_lexer_display }}
            <td>{{ snippet.published }}</td>
            <td>{{ snippet.num_views }}</td>
            <td>
                <a href="{{ snippet.author.get_absolute_url }}">
                    {{ snippet.author }}
                </a>
            </td>
        </tr>
    </tbody>
    {% endfor %}
</table>
{% else %}
<p>{% trans "No snippets have been created yet!" %}</p>
{% endif %}
{% endblock %}