add admin task for unifying the slugs of episodes
[mygpo.git] / mygpo / admin / templates / admin / unify-slugs-select.html
blob675c38793e25c7b950b9b6eeae310e6ce5af0c17
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load podcasts %}
5 {% load menu %}
6 {% block mainmenu %}{{ "/admin/"|main_menu }}{% endblock %}
7 {% block sectionmenu %}{{ "/admin/"|section_menu:"Admin" }}{% endblock %}
9 {% block title %}{% trans "Admin Area" %}{% endblock %}
11 {% block header %}
12 <h1>{% trans "Merge Podcasts and Episodes" %}</h1>
13 {% endblock %}
15 {% block content %}
16 <form method="post" action="{% url "admin-unify-slugs" %}">
17 {% csrf_token %}
18 <table>
19 <tr>
20 <th>Feed URL</th>
21 <td><input type="text" name="feed" value="" /></td>
22 </tr>
23 <tr>
24 <td><input type="submit" value="OK" /></td>
25 </tr>
26 </table>
27 </form>
29 {% endblock %}