]>
Commit | Line | Data |
---|---|---|
2b840e0c NL |
1 | {% extends "layout.twig" %} |
2 | ||
3 | {% block title %}{% trans "config" %}{% endblock %} | |
4 | {% block menu %} | |
5 | <ul id="links"> | |
6 | <li><a href="./" {% if view == 'home' %}class="current"{% endif %}>{% trans "home" %}</a></li> | |
7 | <li><a href="./?view=fav" {% if view == 'fav' %}class="current"{% endif %}>{% trans "favorites" %}</a></li> | |
8 | <li><a href="./?view=archive" {% if view == 'archive' %}class="current"{% endif %}>{% trans "archive" %}</a></li> | |
9 | <li><a href="./?view=config" {% if view == 'config' %}class="current"{% endif %}>{% trans "config" %}</a></li> | |
10 | <li><a href="./?logout" title="{% trans "logout" %}">{% trans "logout" %}</a></li> | |
11 | </ul> | |
12 | {% endblock %} | |
13 | {% block content %} | |
6a361945 NL |
14 | <h2>{% trans "Bookmarklet" %}</h2> |
15 | <p>{% trans "Thanks to the bookmarklet, you will be able to easily add a link to your poche." %} {% trans "Have a look to this documentation:" %} <a href="http://inthepoche.com/?pages/Documentation">inthepoche.com</a>.</p> | |
16 | <p>{% trans "Drag & drop this link to your bookmarks bar and have fun with poche." %}</p> | |
17 | <p class="txtcenter"><a ondragend="this.click();" style="cursor: move; border: 1px dashed grey; background: white; padding: 5px;" title="i am a bookmarklet, use me !" href="javascript:if(top['bookmarklet-url@inthepoche.com']){top['bookmarklet-url@inthepoche.com'];}else{(function(){var%20url%20=%20location.href%20||%20url;window.open('{{ poche_url }}?action=add&url='%20+%20btoa(url),'_self');})();void(0);}">{% trans "poche it!" %}</a></p> | |
da368cc8 | 18 | |
6a361945 NL |
19 | <h2>{% trans "Updating poche" %}</h2> |
20 | <p><ul> | |
21 | <li>{% trans "your version" %} : <strong>{{ constant('POCHE_VERSION') }}</strong></li> | |
22 | <li>{% trans "latest stable version" %} : {{ prod }}. {% if compare_prod == -1 %}<strong><a href="http://inthepoche.com/?pages/T%C3%A9l%C3%A9charger-poche">{% trans "a more recent stable version is available." %}</a></strong>{% else %}{% trans "you are up to date." %}{% endif %}</li> | |
56ab22d0 | 23 | {% if constant('DEBUG_POCHE') == 1 %}<li>{% trans "latest dev version" %} : {{ dev }}. {% if compare_dev == -1 %}<strong><a href="http://inthepoche.com/?pages/T%C3%A9l%C3%A9charger-poche">{% trans "a more recent development version is available." %}</a></strong>{% else %}{% trans "you are up to date." %}{% endif %}</li>{% endif %} |
6a361945 NL |
24 | </ul> |
25 | </p> | |
32520785 | 26 | |
6a361945 NL |
27 | <h2>{% trans "Change your password" %}</h2> |
28 | <form method="post" action="?config" name="loginform"> | |
29 | <fieldset class="w500p"> | |
30 | <div class="row"> | |
31 | <label class="col w150p" for="password">{% trans "New password:" %}</label> | |
32 | <input class="col" type="password" id="password" name="password" placeholder="{% trans "Password" %}" tabindex="2"> | |
33 | </div> | |
34 | <div class="row"> | |
35 | <label class="col w150p" for="password_repeat">{% trans "Repeat your new password:" %}</label> | |
36 | <input class="col" type="password" id="password_repeat" name="password_repeat" placeholder="{% trans "Password" %}" tabindex="3"> | |
37 | </div> | |
38 | <div class="row mts txtcenter"> | |
39 | <button class="bouton" type="submit" tabindex="4">{% trans "Update" %}</button> | |
40 | </div> | |
41 | </fieldset> | |
42 | <input type="hidden" name="returnurl" value="{{ referer }}"> | |
43 | <input type="hidden" name="token" value="{{ token }}"> | |
44 | </form> | |
c765c367 | 45 | |
6a361945 NL |
46 | <h2>{% trans "Import" %}</h2> |
47 | <p>{% trans "Please execute the import script locally, it can take a very long time." %}</p> | |
48 | <p>{% trans "More infos in the official doc:" %} <a href="http://inthepoche.com/?pages/Documentation">inthepoche.com</a></p> | |
49 | <p><ul> | |
50 | <li><a href="./?import&from=pocket">{% trans "import from Pocket" %}</a> (you must have a "ril_export.html" file on your server)</li> | |
51 | <li><a href="./?import&from=readability">{% trans "import from Readability" %}</a> (you must have a "readability" file on your server)</li> | |
52 | <li><a href="./?import&from=instapaper">{% trans "import from Instapaper" %}</a> (you must have a "instapaper-export.html" file on your server)</li> | |
53 | </ul></p> | |
c765c367 | 54 | |
6a361945 NL |
55 | <h2>{% trans "Export your poche datas" %}</h2> |
56 | <p><a href="./?export" target="_blank">{% trans "Click here" %}</a> {% trans "to export your poche datas." %}</p> | |
2b840e0c | 57 | {% endblock %} |