{% extends "dpaste/base.html" %} {% load i18n %} {% block title %}My Pastes{% endblock %} {% block content %} {% if snippet_list %}

Your Previous Pastes:

{% for snippet in snippet_list %}

{% if snippet.title %}{{ snippet.title }}{% else %} {% trans "Paste" %} #{{ snippet.id}}{% endif %} ~ {{ snippet.published|date:_("DATETIME_FORMAT") }}

{{ snippet.content|truncatewords:40 }}

{% endfor %}
{% else %}

{% trans "No pastes yet!" %}

{% endif %}
{% trans "Note: This data is stored in a local cookie." %}
{% endblock %}