playlistShorten/urlweb/templates/shortener/link_info.html

13 lines
261 B
HTML
Raw Normal View History

2011-07-20 15:25:26 +00:00
{% extends "base.html" %}
{% block title %}Link info{% endblock %}
{% block content %}
<p>
<a href="{{ link.short_url }}">{{ link.url }}</a> (Score: {{ link.usage_count }})
<br/>
<br/>
Submitted on: {{ link.date_submitted|date:"M d, Y" }}
</p>
{% endblock %}