46 lines
2.2 KiB
Plaintext
46 lines
2.2 KiB
Plaintext
extends ../../../views/base.jade
|
|
|
|
mixin question(id, qu, info)
|
|
label(for="#{id}", style={'margin-right':'10px'}) #{qu}
|
|
if (info !== undefined)
|
|
span.glyphicon.glyphicon-question-sign(type='button', data-toggle='tooltip', data-placement='top', title='#{info}')
|
|
input.form-control(name="answer#{id}", type="text", placeholder="Answer")
|
|
|
|
mixin rate(id, qu, info)
|
|
label(for="anwser#{id}", style={'margin-right':'10px'}) #{qu}
|
|
if (info !== undefined)
|
|
span.glyphicon.glyphicon-question-sign(type='button', data-toggle='tooltip', data-placement='top', title='#{info}')
|
|
input.rating(id="answer#{id}", name="answer#{id}", type="number", min='0', max='5', step='1', default='3')
|
|
|
|
block extrahead
|
|
link(rel="stylesheet", href="/static/css/feedback.css")
|
|
link(rel="stylesheet", href="/static/css/star-rating.min.css")
|
|
|
|
block extrajs
|
|
script(src="/static/js/star-rating.min.js")
|
|
script $(function () { $('[data-toggle="tooltip"]').tooltip() })
|
|
script.
|
|
var liste = [1,2];
|
|
for (var i = 0; i < liste.length; i++) {
|
|
$("#answer" + liste[i]).rating({showClear: false, showCaption: false, size:'xs'});
|
|
$("#answer" + liste[i]).rating('update', 3);
|
|
}
|
|
|
|
block content
|
|
form.form-signin(method="POST", action='/feedback-target')
|
|
h2 Please give us your feedback
|
|
|
|
+rate(1, "What was the difficulty level without recommendation ?", "1 star if it was very easy, 5 stars if it was very difficult")
|
|
+rate(2, "What was the difficulty level with recommendation ?", "1 star if it was very easy, 5 stars if it was very difficult")
|
|
+question(3, "Did the recommendations help you to find the coins ?")
|
|
+question(4, "Did the recommendations help you to browse the scene ?")
|
|
+question(5, "Do you think recommendations can be helpful ?")
|
|
+question(6, "Which recommendation style do you prefer and why ?")
|
|
+question(7, "Did you enjoy this ?")
|
|
|
|
//-label(for='input1') Did you have trouble to find the coins during the first step ?
|
|
//-input#input1.form-control(name="input1", type="text", placeholder='Id')
|
|
|
|
button.btn.btn-lg.btn-primary.btn-block(type='submit') Submit
|
|
|