Improved help

This commit is contained in:
gpkvt 2023-06-05 10:52:12 +02:00
parent 93d62752d7
commit b392ffa7fd
4 changed files with 13 additions and 9 deletions

View File

@ -15,7 +15,8 @@ mailtext = Einreichen!
help_title = Hilfe help_title = Hilfe
help_1 = Wähle die Antworten durch Klicken oder mit der Tastatur (a/b) aus. Sobald alle Antworten ausgewählt wurden, werden nach einer kurzen Wartezeit automatisch neue Fragen geladen. help_1 = Wähle die Antworten durch Klicken oder mit der Tastatur (a/b) aus. Sobald alle Antworten ausgewählt wurden, werden nach einer kurzen Wartezeit automatisch neue Fragen geladen.
help_2 = Möchtest du nicht alle Fragen beantworten, klicke einfach auf die Schaltfläche "Weiter" unten rechts. help_2 = Möchtest du nicht alle Fragen beantworten, klicke einfach auf die Schaltfläche "Weiter" unten rechts.
help_3 = Diese Webseite zeichnet keine Daten auf und verwendet keine Cookies. help_3 = Klicke/tippe außerhalb dieses Fensters oder bewege die Maus, um fortzufahren.
help_4 = Diese Webseite zeichnet keine Daten auf und verwendet keine Cookies.
separator = oder separator = oder
questions_prefix = Es gibt derzeit questions_prefix = Es gibt derzeit
questions_suffix = Fragen. questions_suffix = Fragen.

View File

@ -95,6 +95,7 @@ def hello():
help1 = config.get('i18n', 'help_1') help1 = config.get('i18n', 'help_1')
help2 = config.get('i18n', 'help_2') help2 = config.get('i18n', 'help_2')
help3 = config.get('i18n', 'help_3') help3 = config.get('i18n', 'help_3')
help4 = config.get('i18n', 'help_4')
url = config.get('main', 'base_url') url = config.get('main', 'base_url')
theme = config.get('main', 'theme') theme = config.get('main', 'theme')
ablines = [] ablines = []
@ -118,7 +119,7 @@ def hello():
with open("ab.txt", "r") as f: with open("ab.txt", "r") as f:
num_lines = sum(1 for _ in f) num_lines = sum(1 for _ in f)
return render_template('index.html', title=title, separator=separator, content=ablines, num_lines=num_lines, epoch=epoch, mailto=mail, more=more, questions_prefix=questions_prefix, questions_suffix=questions_suffix, send_questions=send_questions, lang=lang, url=url, desc=desc, theme=theme, mailtext=mailtext, help=help, help_1=help1, help_2=help2, help_3=help3) return render_template('index.html', title=title, separator=separator, content=ablines, num_lines=num_lines, epoch=epoch, mailto=mail, more=more, questions_prefix=questions_prefix, questions_suffix=questions_suffix, send_questions=send_questions, lang=lang, url=url, desc=desc, theme=theme, mailtext=mailtext, help=help, help_1=help1, help_2=help2, help_3=help3, help_4=help4)
def getContent(): def getContent():
lines = [a.strip() for a in open("ab.txt", "r").readlines()] lines = [a.strip() for a in open("ab.txt", "r").readlines()]

View File

@ -30,9 +30,10 @@ a #help {
a:hover #help { a:hover #help {
position: absolute; position: absolute;
top: 65px;
left: 50%;
height: auto; height: auto;
width: 420px; width: 50%;
top: 75px;
margin: auto; margin: auto;
padding: 20px; padding: 20px;
overflow: visible; overflow: visible;
@ -43,6 +44,7 @@ a:hover #help {
border-radius: 25px; border-radius: 25px;
display: inline-block; display: inline-block;
text-align: center; text-align: center;
transform: translate(-50%);
} }
#header { #header {
@ -236,7 +238,6 @@ input[type="radio"] {
.toggle_label { .toggle_label {
min-width: 100%; min-width: 100%;
;
} }
} }
@ -289,6 +290,10 @@ input[type="radio"] {
a { a {
color: var(--fg-lnk) !important; color: var(--fg-lnk) !important;
} }
a:hover #help {
width: 80%;
}
} }
#toggle_checkbox { #toggle_checkbox {

View File

@ -18,7 +18,7 @@
{{ questions_prefix }} {{ num_lines }} {{ questions_suffix }} {{ questions_prefix }} {{ num_lines }} {{ questions_suffix }}
<br> <br>
<a href="mailto:{{ mailto }}">{{ mailtext }}</a> - <a href="mailto:{{ mailto }}">{{ mailtext }}</a> -
<a href="">Hilfe? <a href="#">Hilfe?
<div id="help"> <div id="help">
<strong>{{ help }}</strong> <strong>{{ help }}</strong>
<p>{{ help_1 }}</p> <p>{{ help_1 }}</p>
@ -31,9 +31,6 @@
{%- if help_4 %} {%- if help_4 %}
<p>{{ help_4 }}</p> <p>{{ help_4 }}</p>
{%- endif %} {%- endif %}
{%- if help_5 %}
<p>{{ help_5 }}</p>
{%- endif %}
</div> </div>
</a> </a>
</div> </div>