-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support feedback page after answering a risk
- Loading branch information
Showing
5 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
src/euphorie/client/browser/templates/risk_identification_feedback.pt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml" | ||
xmlns:i18n="http://xml.zope.org/namespaces/i18n" | ||
xmlns:meta="http://xml.zope.org/namespaces/meta" | ||
xmlns:metal="http://xml.zope.org/namespaces/metal" | ||
xmlns:tal="http://xml.zope.org/namespaces/tal" | ||
meta:interpolation="true" | ||
metal:use-macro="context/@@shell/macros/shell" | ||
tal:define=" | ||
client nocall:request/client; | ||
webhelpers nocall:context/@@webhelpers; | ||
" | ||
i18n:domain="euphorie" | ||
> | ||
|
||
<body> | ||
<metal:slot fill-slot="content" | ||
tal:define=" | ||
risk nocall:view/risk; | ||
" | ||
> | ||
<tal:block replace="tile:statusmessages" /> | ||
<form class="pat-form pat-inject panel-style" | ||
accept-charset="UTF-8" | ||
action="${here/absolute_url}/@@${view/__name__}" | ||
enctype="multipart/form-data" | ||
method="post" | ||
data-pat-inject="history: record; source: #step-2-topics; target: #step-2-topics && source: #main-content; target: #main-content && source: #toolbar; target: #toolbar && source: #status; target: #status" | ||
> | ||
<a class="pat-scroll pat-scroll-animated" | ||
hidden | ||
href="#content-pane" | ||
data-pat-scroll="selector: #content-pane; trigger: auto; offset: 0" | ||
>Scroll to top</a> | ||
|
||
<div class="pat-scroll-box" | ||
id="content-pane" | ||
> | ||
<article class="rich" | ||
tal:content="structure:risk/feedback_text|nothing" | ||
></article> | ||
</div> | ||
|
||
<p class="button-bar pat-bumper" | ||
id="nav-bar" | ||
> | ||
<button class="pat-button continue" | ||
name="next" | ||
type="submit" | ||
value="skip" | ||
i18n:translate="label_continue" | ||
>Continue</button> | ||
</p> | ||
</form> | ||
</metal:slot> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters