{% extends "base.html" %} {% block title %}Flickr mail{% endblock %} {% block content %}

Flickr mail

{% if name and photos is defined and photos %}

Wikipedia article: {{ name }}

Select a photo to compose a message:

{% for photo in photos %}
{{ photo.title }}

{{ photo.realname or photo.username }}

{{ photo.license_name }}
{% endfor %}

View full search on Flickr

{% elif name and not flickr_url %}

Wikipedia article: {{ name }}

No photos found. Try a different search term.

Search on Flickr directly

{% endif %} {% if flickr_url %}
{% if img_url %}
{% else %}
{% endif %}

Send message on Flickr

Subject: {{ subject }}
Message
{% for p in lines %}

{{ p }}

{% endfor %}
{% endif %}
Written by Edward Betts. Source code and bug reports: https://git.4angle.com/edward/flickr-mail
{% endblock %} {% block scripts %} {% if subject and lines %} {% endif %} {% endblock %}