Added new setting to the /cookies page which enables always showing full document text instead of showing beginning of the document. This fixes issue #551. - Legacy-Id: 2680 Note: SVN reference [2676] has been migrated to Git commit f7a33efea768e70c1865c3bbd084cf82cd512c78
69 lines
4.2 KiB
HTML
69 lines
4.2 KiB
HTML
{# Copyright The IETF Trust 2010, All Rights Reserved #}
|
|
{% extends "base.html" %}
|
|
{% load ietf_filters %}
|
|
{% block title %}User settings{% endblock %}
|
|
{% block content %}
|
|
|
|
<h2>Cookie settings for the ietf datatracker.</h2>
|
|
|
|
<p> Following settings are implemented using cookies, so if you have
|
|
cookies disabled then you are not able to change the settings
|
|
(everything still continues to work by using default settings).</p>
|
|
|
|
<table id="settings">
|
|
<tr class="setting-header">
|
|
<td colspan="6">
|
|
<h2 class="ietf-divider">How many days is considered new</h2>
|
|
</td>
|
|
<tr>
|
|
<tr class="setting-description">
|
|
<td colspan="6">
|
|
<p>This setting affects how many days is considered new enough to get the special marking in the drafts page. Default setting is 14 days.</p>
|
|
</td>
|
|
</tr>
|
|
<tr class="settings-values">
|
|
<td>{% if new_enough|equal:"7" %}<span class="ietf-highlight-y"><a href="/cookies/new_enough/7">7 days</a></span>{%else%}<a href="/cookies/new_enough/7">7 days</a>{% endif %}</td></td>
|
|
<td>{% if new_enough|equal:"14" %}<span class="ietf-highlight-y"><a href="/cookies/new_enough/14">14 days</a></span>{%else%}<a href="/cookies/new_enough/14">14 days</a>{% endif %}</td>
|
|
<td>{% if new_enough|equal:"21" %}<span class="ietf-highlight-y"><a href="/cookies/new_enough/21">21 days</a></span>{%else%}<a href="/cookies/new_enough/21">21 days</a>{% endif %}</td>
|
|
<td>{% if new_enough|equal:"30" %}<span class="ietf-highlight-y"><a href="/cookies/new_enough/30">30 days</a></span>{%else%}<a href="/cookies/new_enough/30">30 days</a>{% endif %}</td>
|
|
<td>{% if new_enough|equal:"60" %}<span class="ietf-highlight-y"><a href="/cookies/new_enough/60">60 days</a></span>{%else%}<a href="/cookies/new_enough/60">60 days</a>{% endif %}</td>
|
|
<td>{% if new_enough|equal:"90" %}<span class="ietf-highlight-y"><a href="/cookies/new_enough/90">90 days</a></span>{%else%}<a href="/cookies/new_enough/90">90 days</a>{% endif %}</td>
|
|
</tr>
|
|
|
|
<tr class="setting-header">
|
|
<td colspan="6">
|
|
<h2 class="ietf-divider">How many days is considered soon</h2>
|
|
</td>
|
|
<tr>
|
|
<tr class="setting-description">
|
|
<td colspan="6">
|
|
<p>This setting tells what is considered soon when showing document which is going to be expire soon. Default setting is 14 days.</p>
|
|
</td>
|
|
</tr>
|
|
<tr class="settings-values">
|
|
<td>{% if expires_soon|equal:"7" %}<span class="ietf-highlight-y"><a href="/cookies/expires_soon/7">7 days</a></span>{%else%}<a href="/cookies/expires_soon/7">7 days</a>{% endif %}</td></td>
|
|
<td>{% if expires_soon|equal:"14" %}<span class="ietf-highlight-y"><a href="/cookies/expires_soon/14">14 days</a></span>{%else%}<a href="/cookies/expires_soon/14">14 days</a>{% endif %}</td>
|
|
<td>{% if expires_soon|equal:"21" %}<span class="ietf-highlight-y"><a href="/cookies/expires_soon/21">21 days</a></span>{%else%}<a href="/cookies/expires_soon/21">21 days</a>{% endif %}</td>
|
|
<td>{% if expires_soon|equal:"30" %}<span class="ietf-highlight-y"><a href="/cookies/expires_soon/30">30 days</a></span>{%else%}<a href="/cookies/expires_soon/30">30 days</a>{% endif %}</td>
|
|
<td>{% if expires_soon|equal:"60" %}<span class="ietf-highlight-y"><a href="/cookies/expires_soon/60">60 days</a></span>{%else%}<a href="/cookies/expires_soon/60">60 days</a>{% endif %}</td>
|
|
<td>{% if expires_soon|equal:"90" %}<span class="ietf-highlight-y"><a href="/cookies/expires_soon/90">90 days</a></span>{%else%}<a href="/cookies/expires_soon/90">90 days</a>{% endif %}</td>
|
|
</tr>
|
|
|
|
<tr class="setting-header">
|
|
<td colspan="6">
|
|
<h2 class="ietf-divider">Show full document text in document page</h2>
|
|
</td>
|
|
<tr>
|
|
<tr class="setting-description">
|
|
<td colspan="6">
|
|
<p>Show the full draft immediately on the document page instead of only showing beginning of it. This defaults to off.</p>
|
|
</td>
|
|
</tr>
|
|
<tr class="settings-values">
|
|
<td>{% if full_draft|equal:"off" %}<span class="ietf-highlight-y"><a href="/cookies/full_draft/off">off</a></span>{%else%}<a href="/cookies/full_draft/off">off</a>{% endif %}</td></td>
|
|
<td>{% if full_draft|equal:"on" %}<span class="ietf-highlight-y"><a href="/cookies/full_draft/on">on</a></span>{%else%}<a href="/cookies/full_draft/on">on</a>{% endif %}</td></td>
|
|
</tr>
|
|
</table>
|
|
{% endblock %}
|
|
|