diff options
Diffstat (limited to '')
-rw-r--r-- | plugins/TakeATour/tpl/admin.tpl | 17 | ||||
-rw-r--r-- | plugins/TakeATour/tpl/js_css.tpl | 3 |
2 files changed, 20 insertions, 0 deletions
diff --git a/plugins/TakeATour/tpl/admin.tpl b/plugins/TakeATour/tpl/admin.tpl new file mode 100644 index 000000000..ae6c7a199 --- /dev/null +++ b/plugins/TakeATour/tpl/admin.tpl @@ -0,0 +1,17 @@ +<div class="titrePage"> + <h2>{'takeatour_configpage'|@translate}</h2> +</div> +<div id="helpContent"> + <p>{'TAT_descrp'|@translate}</p> + {if !isset($TAT_tour_ignored) or (isset($TAT_tour_ignored) and in_array(first_contact, $TAT_tour_ignored))} + <fieldset> + <legend>{'First Contact'|@translate}</legend> + <div class="TAT_description">{'first_contact_descrp'|@translate}</div> + <form action="{$F_ACTION}" method="post"> + <input type="hidden" name="submited_tour" value="first_contact"> + <input type="hidden" name="pwg_token" value="{$pwg_token}"> + <input type="submit" name="button2" id="button2" value="{'Start the Tour'|@translate}"> + </form> + </fieldset> + {/if} +</div>
\ No newline at end of file diff --git a/plugins/TakeATour/tpl/js_css.tpl b/plugins/TakeATour/tpl/js_css.tpl new file mode 100644 index 000000000..240263ad5 --- /dev/null +++ b/plugins/TakeATour/tpl/js_css.tpl @@ -0,0 +1,3 @@ +{combine_script id='jquery.bootstrap-tour' load='header' require='jquery' path='plugins/TakeATour/js/custom-bootstrap-tour-standalone.js'}
+{combine_css path="plugins/TakeATour/css/bootstrap-essential.css"}
+{combine_css path="plugins/TakeATour/css/bootstrap-tour.min.css"}
\ No newline at end of file |