<h3>Beh, ovviamente <em>questa pagina esiste</em>. Ma la pagina che hai richiesto non esiste. Infatti, questa pagina è qui solo per dirti che la pagina che stai cercando non esiste</h3><br/>
</div>
<divid="error-box1">
<ahref="{% url questions %}">{% trans "see all questions" %} »</a>
</div>
<divid="error-box2">
<ahref="{% url tags %}">{% trans "see all tags" %} »</a>
</div>
<divid="error-box3">
<ahref="#"id="linkPrevious">{% trans "back to previous page" %} »</a>
<pclass="message">{% blocktrans %}You currently have no external authentication provider associated with your account.{% endblocktrans %}</p>
{% endif %}
{% ifequal view_user request.user %}
<inputtype="button"class="submit"value="{% trans "Addnewprovider"%}"onclick="window.location='{% url user_add_external_provider %}'"/>
{% endifequal %}
{% if allow_local_auth %}
{% if has_password %}
<pclass="message">{% blocktrans %}This is where you can change your password. Make sure you remember it!{% endblocktrans %}</p>
{% else %}
<pclass="message">{% blocktrans %}You can set up a password for your account, so you can login using standard username and password!{% endblocktrans %}</p>
<divclass="submit-row"><inputtype="submit"class="submit"value="{% if has_password %}{% trans "Changepassword"%}{%endif%}{%ifnothas_password%}{%trans"Createpassword"%}{%endif%}"/></div>
{% block title %}{% spaceless %}{% trans "Connect your OpenID with this site" %}{% endspaceless %}{% endblock %}
{% block content %}
<divid="main-bar"class="headNormal">
{% trans "Connect your OpenID with your account on this site" %}
</div>
<divid="completetxt">
<divclass="message">
{# Only display the OpenID greeting if a provider is detected. #}
{% if provider %}
<p>
<b>{% trans "You are here for the first time with " %}{{ provider }}</b>
</p>
{% endif %}
<p>
{% trans "Please choose your screen name and confirm your email address. A valid email address is necessary to receive notifications about activity in the areas of this community you're most interested in, and will help you become an involved participant in this community." %}
</p>
</div>
<pstyle="display:none">{% trans "This account already exists, please use another." %}</p>
{% blocktrans %}The following link grants you a one time access to your account at {{ app_name }}.{% endblocktrans %}
</p>
<pstyle="{{ p_style }}"><astyle="{{ a_style }}"href="{% fullurl auth_tempsignin user=recipient.id,code=temp_login_code %}">{% trans "Go to your account" %}</a></p>
<pstyle="{{ p_style }}">{% trans "If the above link is not clickable, copy and paste this url into your web browser's address bar:" %}</p>
<linkrel="stylesheet"type="text/css"media="all"href="{% media "/media/style/markdown_help.css"%}"/>
{% endblock %}
{% block content %}
<divid="main-wrapper"><br/><br/>
<divid="heading">
<h1>{% trans "Markdown Syntax" %}</h1>
<p>{% blocktrans %}This document describes some of the more important parts of Markdown (for writers, that is). There's a lot more to the syntax than is mentioned here, though. To get the full syntax documentation, go to John Gruber's <ahref="http://daringfireball.net/projects/markdown/syntax"rel="nofollow">Markdown Syntax</a> page{% endblocktrans %}</p>
</div>
<divclass="section">
<h2class="section-title">{% trans "Headers" %}</h2>
<divclass="section-description">
{% trans "For top-level headers underline the text with equal signs. For second-level headers use dashes to underline." %}
</div>
<tableclass="section-example"><tr>
<td>
<code>{% trans "This is an H1" %}</code><br/>
<code>============= </code>
</td>
<td>
<h1>{% trans "This is an H1" %}</h1>
</td>
</tr></table>
<tableclass="section-example"><tr>
<td>
<code>{% trans "This is an H2" %}</code><br/>
<code>-------------</code>
</td>
<td>
<h2>{% trans "This is an H2" %}</h2>
</td>
</tr></table>
<divclass="section-description">
{% blocktrans %}If you would rather, you can prefix headers with a hash (#) symbol instead. The number of hash symbols indicates the header level. For example, a single hash indicates a header level of one while two indicates the second header level:{% endblocktrans %}
</div>
<tableclass="section-example"><tr>
<td>
<code># {% trans "This is an H1" %}</code>
</td>
<td>
<h1>{% trans "This is an H1" %}</h1>
</td>
</tr></table>
<tableclass="section-example"><tr>
<td>
<code>## {% trans "This is an H2" %}</code>
</td>
<td>
<h2>{% trans "This is an H2" %}</h2>
</td>
</tr></table>
<tableclass="section-example"><tr>
<td>
<code>### {% trans "This is an H3" %}</code>
</td>
<td>
<h3>{% trans "This is an H3" %}</h3>
</td>
</tr></table>
<divclass="section-description">
{% trans "Which you choose is a matter of style. Whichever you thinks looks better in the text document. In both cases, the final, fully formatted, document looks the same." %}
</div>
</div>
<divclass="section">
<h2class="section-title">{% trans "Paragraphs" %}</h2>
<divclass="section-description">
{% trans "Paragraphs are surrounded by blank lines." %}
</div>
<divclass="section-example">
<code>{% trans "This is paragraph one." %}</code>
</div><br/>
<divclass="section-example">
<code>{% trans "This is paragraph two." %}</code>
</div>
</div>
<divclass="section">
<h2class="section-title">{% trans "Links" %}</h2>
<divclass="section-description">
{% blocktrans %}
There are two parts to every link.
The first is the actual text that the user will see and it is surrounded by brackets.
The second is address of the page you wish to link to and it is surrounded in parenthesis.
{% endblocktrans %}
</div>
<tableclass="section-example"><tr>
<td>
<code>[{% trans "link text" %}]({% trans "http://example.com/" %})</code>
</td>
<td>
<a>{% trans "link text" %}</a>
</td>
</tr></table>
</div>
<divclass="section">
<h2class="section-title">{% trans "Formatting" %}</h2>
<divclass="section-description">
{% trans "To indicate bold text surround the text with two star (*) symbols or two underscore (_) symbols:" %}
</div>
<tableclass="section-example"><tr>
<td>
<code>**{% trans "This is bold" %}**</code>
</td>
<td>
<strong>{% trans "This is bold" %}</strong>
</td>
</tr></table>
<tableclass="section-example"><tr>
<td>
<code>__{% trans "This is also bold" %}__</code>
</td>
<td>
<strong>{% trans "This is also bold" %}</strong>
</td>
</tr></table>
<divclass="section-description">
{% trans "To indicate italicized text surround the text with a single star (*) symbol or underscore (_) symbol:" %}
</div>
<tableclass="section-example"><tr>
<td>
<code>*{% trans "This is italics" %}*</code>
</td>
<td>
<i>{% trans "This is italics" %}</i>
</td>
</tr></table>
<tableclass="section-example"><tr>
<td>
<code>_{% trans "This is also italics" %}_</code>
</td>
<td>
<i>{% trans "This is also italics" %}</i>
</td>
</tr></table>
<divclass="section-description">
{% trans "To indicate italicized and bold text surround the text with three star (*) symbol or underscore (_) symbol:" %}
</div>
<tableclass="section-example"><tr>
<td>
<code>***{% trans "This is bold and italics" %}***</code>
</td>
<td>
<strong><i>{% trans "This is bold and italics" %}</i></strong>
</td>
</tr></table>
<tableclass="section-example"><tr>
<td>
<code>___{% trans "This is also bold and italics" %}___</code>
</td>
<td>
<strong><i>{% trans "This is also bold and italics" %}</i></strong>
</td>
</tr></table>
</div>
<divclass="section">
<h2class="section-title">{% trans "Blockquotes" %}</h2>
<divclass="section-description">
{% trans "To create an indented area use the right angle bracket (>) character before each line to be included in the blockquote." %}
</div>
<tableclass="section-example"><tr>
<td>
<code>> {% trans "This is part of a blockquote." %}</code><br/>
<code>> {% trans "This is part of the same blockquote." %}</code>
</td>
<td>
<pstyle="padding-left:15px;">{% trans "This is part of a blockquote." %}<br/>{% trans "This is part of the same blockquote." %}</p>
</td>
</tr></table>
<divclass="section-description">
{% trans "Rather than putting it in front of each line to include in the block quote you can put it at the beginning and end the quote with a newline." %}
</div>
<tableclass="section-example"><tr>
<td>
<code>> {% trans "This is part of a blockquote." %}</code><br/>
<code>{% trans "This continues the blockquote even though there's no bracket." %}</code><br/><br/>
<code>{% trans "The blank line ends the blockquote." %}</code>
</td>
<td>
<pstyle="padding-left:15px;">{% trans "This is part of a blockquote." %} <br/> {% trans "This continues the blockquote even though there's no bracket." %}</p>
<p>{% trans "The blank line ends the blockquote." %}</p>
</td>
</tr></table>
</div>
<divclass="section">
<h2class="section-title">{% trans "Lists" %}</h2>
<divclass="section-description">
{% trans "To create a numbered list in Markdown, prefix each item in the list with a number followed by a period and space. The number you use actually doesn't matter." %}
</div>
<tableclass="section-example"><tr>
<td>
<code>1. {% trans "Item" %} 1</code><br/>
<code>2. {% trans "Item" %} 2</code><br/>
<code>3. {% trans "Item" %} 3</code>
</td>
<td>
<ol>
<li>{% trans "Item" %} 1</li>
<li>{% trans "Item" %} 2</li>
<li>{% trans "Item" %} 3</li>
</ol>
</td>
</tr></table>
<divclass="section-description">
{% trans "To create a bulleted list, prefix each item in the list with a star (*) character." %}
</div>
<tableclass="section-example"><tr>
<td>
<code>* {% trans "A list item" %}</code><br/>
<code>* {% trans "Another list item" %}</code><br/>
<code>* {% trans "A third list item" %}</code>
</td>
<td>
<ul>
<li>{% trans "A list item" %}</li>
<li>{% trans "Another list item" %}</li>
<li>{% trans "A third list item" %}</li>
</ul>
</td>
</tr></table>
</div>
<divclass="section">
<h2class="section-title">{% trans "A Lot More" %}</h2>
<divclass="section-description">{% blocktrans %}There's a lot more to the Markdown syntax than is mentioned here. But for creative writers, this covers a lot of the necessities. To find out more about Markdown than you'd ever want to really know, <ahref="http://daringfireball.net/projects/markdown/syntax"target="_blank"rel="nofollow">go to the Markdown page where it all started</a>.{% endblocktrans %}</div>
message+="{% blocktrans %}Your karma points will be below the minimum reputation to comment. Are you sure you want to award points?{% endblocktrans %}";
{{ statistics.total_questions }} {% trans "question" %}{{ statistics.total_questions|pluralize }} ({{ statistics.questions_last_24 }} {% trans "in the last 24 hours" %})
</td>
</tr>
<tr>
<td>
{{ statistics.total_answers }} {% trans "answer" %}{{ statistics.total_answers|pluralize }} ({{ statistics.answers_last_24 }} {% trans "in the last 24 hours" %})
</td>
</tr>
<tr>
<td>
{{ statistics.total_users }} {% trans "user" %}{{ statistics.total_users|pluralize }} ({{ statistics.users_last_24 }} {% trans "joined in the last 24 hours" %})
{% trans "Your site is running in bootstrap mode, click the button below to revert to defaults." %}<br/>
{% else %}
{% ifequal settings_pack "default" %}
{% trans "Your site is running in standard mode, click the button below to run in bootstrap mode." %}<br/>
{% else %}
{% trans "Your site is running with some customized settings, click the buttons below to run with defaults or in bootstrap mode" %}
{% endifequal %}
{% endifequal %}
{% ifnotequal settings_pack "default" %}
<buttononclick="if (window.confirm('{% trans "Areyousureyouwanttoreverttothedefaults?"%}'))window.location='{% url admin_go_defaults %}';">{% trans "revert to defaults" %}</button>
{% endifnotequal %}
{% ifnotequal settings_pack "bootstrap" %}
<buttononclick="if (window.confirm('{% trans "Areyousureyouwanttorunbootstrapmode?"%}'))window.location='{% url admin_go_bootstrap %}';">{% trans "go bootstrap" %}</button>
{% endifnotequal %}
</td>
</tr>
<tr>
<td>
<em>"Bootstrap mode" relaxes the minimum required reputation to perform actions like voting and commenting.
This is useful to help new communities get started.</em>
{% if "css"|contained_in:unsaved %}<imgwidth="12"height="12"src="{{ settings.ADMIN_MEDIA_PREFIX }}img/admin/icon_alert.gif"alt="{% trans "Unsavedchanges"%}"/>{% endif %}
{% if "headandfoot"|contained_in:unsaved %}<imgwidth="12"height="12"src="{{ settings.ADMIN_MEDIA_PREFIX }}img/admin/icon_alert.gif"alt="{% trans "Unsavedchanges"%}"/>{% endif %}
{% if "head"|contained_in:unsaved %}<imgwidth="12"height="12"src="{{ settings.ADMIN_MEDIA_PREFIX }}img/admin/icon_alert.gif"alt="{% trans "Unsavedchanges"%}"/>{% endif %}
{% if set.name|contained_in:unsaved %}<imgwidth="12"height="12"src="{{ settings.ADMIN_MEDIA_PREFIX }}img/admin/icon_alert.gif"alt="{% trans "Unsavedchanges"%}"/>{% endif %}
</li>
{% endfor %}
</ul>
</div>
<divid="tools-menu"class="module">
<h2>{% trans "Tools" %}</h2>
<ul>
<li><ahref="{% url admin_maintenance %}">{% trans "Maintenance mode" %}</a></li>
<li><ahref="{% url admin_flagged_posts %}">{% trans "Flagged Posts" %}</a></li>
{% for name,tool in tools %}
<li><ahref="{% url admin_tools name %}">{{ tool }}</a></li>
{% trans "Welcome to the OSQA administration area." %}
{% endblock %}
{% block admincontent %}
<tablewidth="100%">
<tr>
<tdwidth="50%"valign="top">
<h3>{%trans "Site statistics" %}</h3>
<table>
<tr>
<td>
{{ statistics.total_questions }} {% trans "question" %}{{ statistics.total_questions|pluralize }} ({{ statistics.questions_last_24 }} {% trans "in the last 24 hours" %})
</td>
</tr>
<tr>
<td>
{{ statistics.total_answers }} {% trans "answer" %}{{ statistics.total_answers|pluralize }} ({{ statistics.answers_last_24 }} {% trans "in the last 24 hours" %})
</td>
</tr>
<tr>
<td>
{{ statistics.total_users }} {% trans "user" %}{{ statistics.total_users|pluralize }} ({{ statistics.users_last_24 }} {% trans "joined in the last 24 hours" %})
</td>
</tr>
</table>
</td>
<tdvalign="top">
<h3>{%trans "Site status" %}</h3>
<table>
<tr>
<td>
{% ifequal settings_pack "bootstrap" %}
{% trans "Your site is running in bootstrap mode, click the button below to revert to defaults." %}<br/>
{% else %}
{% ifequal settings_pack "default" %}
{% trans "Your site is running in standard mode, click the button below to run in bootstrap mode." %}<br/>
{% else %}
{% trans "Your site is running with some customized settings, click the buttons below to run with defaults or in bootstrap mode" %}
{% endifequal %}
{% endifequal %}
{% ifnotequal settings_pack "default" %}
<buttononclick="if (window.confirm('{% trans "Areyousureyouwanttoreverttothedefaults?"%}'))window.location='{% url admin_go_defaults %}';">{% trans "revert to defaults" %}</button>
{% endifnotequal %}
{% ifnotequal settings_pack "bootstrap" %}
<buttononclick="if (window.confirm('{% trans "Areyousureyouwanttorunbootstrapmode?"%}'))window.location='{% url admin_go_bootstrap %}';">{% trans "go bootstrap" %}</button>
{% endifnotequal %}
</td>
</tr>
<tr>
<td>
<em>"Bootstrap mode" relaxes the minimum required reputation to perform actions like voting and commenting.
This is useful to help new communities get started.</em>
</td>
</tr>
</table>
<h3>{%trans "Recalculate scores and reputation" %}</h3>
<buttononclick="if (window.confirm('{% trans "Thisisaheavyoperation,areyousure?"%}'))window.location='{% url admin_denormalize %}';">{% trans "Recalculate" %}</button>
{% block subtitle %}{% trans "Maintenance mode" %}{% endblock %}
{% block pagename %}{% trans "Maintenance mode" %}{% endblock %}
{% block description %}{% trans "Maintainance mode allows you to close your site for maintainance, allowing only a predetermined set of ip addresses to access it normally." %}{% endblock %}
{% block admincontent %}
<formmethod="POST"action="">
{% csrf_token %}
{% if in_maintenance %}
<h1>{% trans "Your site is currently running on maintenance mode." %}</h1>
<p>{% trans "You can adjust the settings bellow" %}</p>
{% endif %}
<table>
{{ form.as_table }}
</table>
{% if in_maintenance %}
<inputtype="submit"name="adjust"value="{% trans "Adjustsettings"%}"/>
<inputtype="submit"name="open"value="{% trans "Opensite"%}"/>
{% else %}
<inputtype="submit"name="close"value="{% trans "Closeformaintenance"%}"/>
<inputname="state_type"type="hidden"value="{{ type }}"/>
{% endfor %}
</div>
</form>
</div>
<divid="changelist-filter">
<h2id="filter-panel-header">{% trans "Filter" %}<small> ({% trans "Click to show/hide" %})</small></h2>
<divid="filter-panel">
<h3>{% trans "By type" %}</h3>
<ul>
<li{%ifnottype_filter%}class="selected"{%endif%}>
<aid="all-node-type-link"href="#all"title="{% trans "clicktoclearthetypefilter"%}">{% trans "all" %}</a>
</li>
{% for type, name in node_types %}
<li{%iftype|contained_in:type_filter%}class="selected"title="{% trans "clicktoremovefromthefilter"%}"{%else%}title="{% trans "clicktoaddtothefilter"%}"{%endif%}>
<aclass="node-type-link"href="#{{ type }}">{{ name }}</a>
<aid="all-state-link"href="#any"title="{% trans "clicktoclearthestatefilter"%}">{% trans "any" %}</a>
</li>
{% for state_type in state_types %}
<li{%ifstate_type|contained_in:state_filter%}class="selected"title="{% trans "clicktoremovefromthefilter"%}"{%else%}title="{% trans "clicktoaddtothefilter"%}"{%endif%}>
<small>{% trans "There are no saved filters. Click bellow to add." %}</small>
{% endif %}
<ulid="pre-filter-container">
{% for name, uri in settings.NODE_MAN_FILTERS %}
<liclass="selected"><ahref="{% url admin_tools "nodeman"%}?{{uri}}">{{ name }}</a></li>
{% endfor %}
</ul>
<formaction=""method="POST">
{% csrf_token %}
<inputname="filter_name"type="text"size="20"id="filter-name-box"style="color: #AAA;"value="{% trans "Filtername..."%}"/>
<buttonname="save_filter"value="0"style="color: #AAA;"title="{% trans "Clicktosavethecurrentfilter"%}"id="save-filter-button"disabled="disabled"class="button">{% trans "Save" %}</button>
{% if has_previous %}<spanclass="prev"><ahref="{{base_url}}page={{ previous }}{{ extend_url }}"title="{% trans "previous"%}">
« {% trans "previous" %}</a></span>{% endif %}
{% if not in_leading_range %}
{% for num in pages_outside_trailing_range %}
<spanclass="page"><ahref="{{base_url}}page={{ num }}{{ extend_url }}">{{ num }}</a></span>
{% endfor %}
...
{% endif %}
{% for num in page_numbers %}
{% ifequal num page %}
{% ifequal pages 1 %}
{% else %}
<spanclass="curr"title="{% trans "currentpage"%}">{{ num }}</span>
{% endifequal %}
{% else %}
<spanclass="page"><ahref="{{base_url}}page={{ num }}{{ extend_url }}"title="{% trans "pagenumber"%}{{num}}{%trans"number-makeblankinenglish"%}">{{ num }}</a></span>
{% endifequal %}
{% endfor %}
{% if not in_trailing_range %}
...
{% for num in pages_outside_leading_range reversed %}
<spanclass="page"><ahref="{{base_url}}page={{ num }}{{ extend_url }}"title="{% trans "pagenumber"%}{{num}}{%trans"number-makeblankinenglish"%}">{{ num }}</a></span>
{% endfor %}
{% endif %}
{% if has_next %}<spanclass="next"><ahref="{{base_url}}page={{ next }}{{ extend_url }}"title="{% trans "nextpage"%}">{% trans "next page" %} »</a></span>{% endif %}
{% blocktrans with question.nstate.closed.extra as close_reason %}The question has been closed for the following reason "{{ close_reason }}" by{% endblocktrans %}
<divclass="tags-summary">{% for tag in question.tagname_list %}
<aclass="tag-link-{{ tag }}"href="{% url tag_questions tag|urlencode %}"title="{% trans "seequestionstagged"%}'{{tag}}'"rel="tag">{{ tag }}</a>{% endfor %}
<aid="active"href="{{ base_url }}active"{%ifequalcurrent"active"%}class="on"{%endifequal%}title="{% trans "mostrecentlyupdatedquestions"%}">{% trans "active" %}</a>
<aid="latest"href="{{ base_url }}latest"{%ifequalcurrent"latest"%}class="on"{%endifequal%}title="{% trans "mostrecentlyaskedquestions"%}">{% trans "newest" %}</a>
<aid="hottest"href="{{ base_url }}hottest"{%ifequalcurrent"hottest"%}class="on"{%endifequal%}title="{% trans "hottestquestions"%}">{% trans "hottest" %}</a>
<aid="mostvoted"href="{{ base_url }}mostvoted"{%ifequalcurrent"mostvoted"%}class="on"{%endifequal%}title="{% trans "mostvotedquestions"%}">{% trans "most voted" %}</a>
<aclass="tag-link-{{ tag }}"href="{% url tag_questions tag|urlencode %}"title="{% trans "seequestionstagged"%}'{{tag}}'{%trans"usingtags"%}"rel="tag">{{ tag }}</a>
<aclass="feed-icon-big"style="background-image:url('{% media "media/images/feed-icon.png"%}');"href="{{ feed_url }}"title="{% trans "subscribetoquestionRSSfeed"%}"></a>
{{ questions.paginator.sort_tabs }}
</div>
<divid="listA">{% for question in questions.paginator.page %}
<p>{% trans "Open the previously closed question" %}: <ahref="{{ question.get_absolute_url }}"><spanclass="big">{{ question.headline }}</span></a>
</p>
<p><strong>{% trans "The question was closed for the following reason " %}"{{ question.get_close_reason_display }}"{% trans "reason - leave blank in english" %} <ahref="{{ question.closed_by.get_profile_url }}">{{ question.closed_by.username }}</a> {% trans "on "%} {% diff_date question.closed_at %}<fontclass="darkred">{% trans "date closed" %}</font>
src="{% media "/media/images/expander-arrow-show.gif"%}"
alt="{% trans "clicktohide/showrevision"%}"/>
</td>
<tdwidth="30px"style="vertical-align:middle"><spanclass="revision-number"title="{% trans "revision"%}{{revision.inst.revision}}">{{ revision.inst.revision }}</span></td>
<spanclass="{% if answer.nis.accepted %}answered-accepted {% endif %} answer-votes"
title="{% blocktrans with answer.score as vote_count %}the answer has been voted for {{ vote_count }} times{% endblocktrans %} {% if answer.nis.accepted %}{% trans "thisanswerhasbeenselectedascorrect"%}{%endif%}">
<h2>{% trans "Notifications and subscription settings" %}</h2>
<pclass="message">
{% blocktrans %}
Here you can decide which types of notifications you wish to receive, and their frequency.<br/>
{% endblocktrans %}
</p>
<divclass='inline-block'>
<formmethod="POST">
{% csrf_token %}
{{ form.errors }}
<tableclass="form-as-table">
<tr>
<tdcolspan="2">
<strong>{% trans "Notify me when:" %}</strong>
</td>
</tr>
<tr>
<td>{% trans "A new member joins" %}</td>
<td>{{ form.member_joins }}</td>
</tr>
<tr>
<td>{% trans "A new question is posted" %}</td>
<td>{{ form.new_question }}</td>
</tr>
<tr>
<td>{% trans "A new question matching my interesting tags is posted" %}</td>
<td>{{ form.new_question_watched_tags }}</td>
</tr>
<tr>
<td>{% trans "There's an update on one of my subscriptions" %}</td>
<td>{{ form.subscribed_questions }}</td>
</tr>
</table>
<p> </p>
<tableclass="form-as-table check-table">
<tr>
<tdcolspan="3">
<strong>{% trans "Auto subscribe me to:" %}</strong>
</td>
</tr>
<tr>
<td>
{{ form.questions_viewed }}{% trans "Questions I view" %}
</td>
<td>
{{ form.all_questions_watched_tags }}{% trans "All questions matching my interesting tags" %}
</td>
<td>
{{ form.all_questions }}{% trans "All questions" %}
</td>
</tr>
</table>
<p> </p>
<tableclass="form-as-table check-table">
<tr>
<tdcolspan="2">
<strong>{% trans "On my subscriptions, notify me when:" %}</strong>
</td>
</tr>
<tr>
<td>
{{ form.notify_answers }}{% trans "An answer is posted" %}
</td>
<td>
{{ form.notify_comments_own_post }}{% trans "A comment on one of my posts is posted" %}
</td>
</tr>
<tr>
<td>
{{ form.notify_comments }}{% trans "A comment is posted" %}
</td>
<td>
{{ form.notify_accepted }}{% trans "An answer is accepted" %}
</td>
</tr>
</table>
<p> </p>
<tableclass="form-as-table check-table">
<tr>
<td>
<strong>{% trans "Daily Digest:" %}</strong>
</td>
</tr>
<tr>
<td>
{{ form.send_digest }}{% trans "Send me the daily digest with information about the site activity" %}
</td>
</tr>
<tr>
<td>
<strong>{% trans "Notify When I'm Discussed:" %}</strong>
</td>
</tr>
<tr>
<td>
{{ form.notify_reply_to_comments }}{% trans "Notify me when someone replies to one of my comments on any post using the <pre>@username</pre> notation" %}
</td>
</tr>
</table>
<divclass="submit-row">
<inputtype="submit"class="submit"name="save"value="{% trans "Update"%}"/>