1 {% extends
"base.html" %}
6 {% block mainmenu %}{{
"/account/"|main_menu }}{% endblock %}
7 {% block sectionmenu %}{{
"/account/privacy"|section_menu }}{% endblock %}
9 {% block title %}{% trans
"Privacy Settings" %}{% endblock %}
12 <h1>{% trans
"Privacy Settings" %}
</h1>
14 <p>{% blocktrans %}{{ domain }} distinguishes between public and private subscriptions.{% endblocktrans %}
16 <li>{% blocktrans %}
<strong>Public
</strong> subscriptions are included in your
<a href=
"/share/">shared podcasts
</a> them) and ouranonymized public statistics.{% endblocktrans %}
</li>
17 <li>{% blocktrans %}
<strong>Private
</strong> subscriptions do neither show up in your list of shared podcasts, nor are considered in our statistics.{% endblocktrans %}
</li>
22 {% if public_subscriptions %}
23 {% trans
"New subscriptions will be public by default." %}
24 <form method=
"post" action=
"{% url privacy_default_private %}">
26 <button class=
"btn" type=
"submit">
27 <i class=
"icon-eye-close"></i> {% trans
"Change to Private" %}
31 {% trans
"New subscriptions will be private by default." %}
32 <form method=
"post" action=
"{% url privacy_default_public %}">
34 <button class=
"btn" type=
"submit">
35 <i class=
"icon-eye-open"></i> {% trans
"Change to Public" %}
41 {% if included_subscriptions %}
42 <h2>{% trans
"Public Subscriptions" %}
</h2>
45 {% for podcast in included_subscriptions %}
47 <td class=
"logo">{{ podcast|podcast_logo }}
</td>
48 <td>{% podcast_group_link podcast %}
</td>
50 <form method=
"post" action=
"{% url privacy_podcast_private podcast.get_id %}">
52 <button class=
"btn btn-danger" type=
"submit">
53 <i class=
"icon-eye-close"></i> {% trans
"Make Private" %}
63 {% if excluded_subscriptions %}
64 <h2>{% trans
"Private Subscriptions" %}
</h3>
67 {% for podcast in excluded_subscriptions %}
69 <td class=
"logo">{{ podcast|podcast_logo }}
</td>
70 <td>{% podcast_group_link podcast %}
</td>
72 <form method=
"post" action=
"{% url privacy_podcast_public podcast.get_id %}">
74 <button class=
"btn" type=
"submit">
75 <i class=
"icon-eye-open"></i> {% trans
"Make Public" %}