remove now unused {% load url from future %}
[mygpo.git] / mygpo / publisher / templates / link.html
blob9cdd24dcde190e05f9907a663669cd238e81c090
1 {% extends "base.html" %}
2 {% load i18n %}
4 {% load menu %}
5 {% block mainmenu %}{{ "/publisher/"|main_menu }}{% endblock %}
6 {% block sectionmenu %}{{ "/publisher/link/"|section_menu }}{% endblock %}
8 {% block title %}{% trans "For Podcast Authors" %}{% endblock %}
10 {% block header %}
11 <h1>{% trans "Link to" %} {{url}}</h1>
12 {% endblock %}
15 {% block content %}
16 <p><img src="/media/author_subscribe.png" /></p>
17 <p>{% blocktrans with url as sitename %}You can paste this code on your website, so users of {{ sitename }} can directly subscribe to your podcast.{% endblocktrans %}</p>
18 <p>{% trans "Change the field 'YOUR_ADRESS' with the adress of your podcast feed." %}</p>
19 <p>
20 <textarea style="width: 100%;" rows="3"><a href="http://{{ url }}{% url "subscribe-by-url" %}?url=YOUR_ADRESS"><img src="http://{{ url }}/media/author_subscribe.png" /></a></textarea>
21 </p>
22 {% endblock %}