0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
templates
/
[
Home
]
File: tiki-admin_survey_questions.tpl
{title url="tiki-admin_survey_questions.php?surveyId=$surveyId"}{tr}Edit survey questions:{/tr} {$survey_info.name}{/title} <div class="navbar"> {button href="tiki-admin_survey_questions.php?surveyId=$surveyId" _text="{tr}Add a New Question{/tr}"} {button href="tiki-list_surveys.php" _text="{tr}List surveys{/tr}"} {button href="tiki-survey_stats.php" _text="{tr}Survey Stats{/tr}"} {button href="tiki-survey_stats_survey.php?surveyId=$surveyId" _text="{tr}This survey stats{/tr}"} {button href="tiki-admin_surveys.php?surveyId=$surveyId" _text="{tr}Edit this Survey{/tr}"} {button href="tiki-admin_surveys.php" _text="{tr}Admin Surveys{/tr}"} </div> <h2> {if $questionId gt 0}{tr}Edit Survey Question{/tr}{else}{tr}Add a New Question to this survey{/tr}{/if} </h2> <form action="tiki-admin_survey_questions.php" method="post"> <input type="hidden" name="surveyId" value="{$surveyId|escape}" /> <input type="hidden" name="questionId" value="{$questionId|escape}" /> <table class="normal"> <tr><td class="formcolor">{tr}Question{/tr}:</td><td class="formcolor"><textarea name="question" rows="5" cols="40">{$info.question|escape}</textarea></td></tr> <tr><td class="formcolor">{tr}Position{/tr}:</td><td class="formcolor"><select name="position">{html_options values=$positions output=$positions selected=$info.position}</select></td></tr> <tr><td class="formcolor">{tr}Type{/tr}:</td><td class="formcolor"> <select name="type"> <option value='c' {if $info.type eq 'c'}selected=selected{/if}>{tr}One choice{/tr}</option> <option value='m' {if $info.type eq 'm'}selected=selected{/if}>{tr}Multiple choices{/tr}</option> <option value='g' {if $info.type eq 'g'}selected=selected{/if}>{tr}Multiple choices of thumbnails from a file gallery{/tr}</option> <option value='t' {if $info.type eq 't'}selected=selected{/if}>{tr}Short text{/tr}</option> <option value='x' {if $info.type eq 'x'}selected=selected{/if}>{tr}Wiki textarea{/tr}</option> <option value='r' {if $info.type eq 'r'}selected=selected{/if}>{tr}Rate (1..5){/tr}</option> <option value='s' {if $info.type eq 's'}selected=selected{/if}>{tr}Rate (1..10){/tr}</option> <option value='r' {if $info.type eq 'r'}selected=selected{/if}>{tr}Rate{/tr}</option> </select></td></tr> <tr><td class="formcolor">{tr}Answer is mandatory:{/tr}</td><td class="formcolor"><input type="checkbox" name="mandatory" {if $info.mandatory eq 'y'}checked="checked"{/if}/></td></tr> <tr><td class="formcolor">{tr}Number of required answers (for multiple choices):{/tr}</td><td class="formcolor"> {tr}Min:{/tr}<input type="text" name="min_answers" size="4" value="{$info.min_answers}" /> {tr}Max:{/tr}<input type="text" name="max_answers" size="4" value="{$info.max_answers}" /> </td></tr> <tr><td class="formcolor"> </td><td class="formcolor"> {remarksbox type="tip" title="{tr}Tip{/tr}"} {tr}For a multiple answer question put the answers into the following field, separated by a comma. Example: one,two,many,lots{/tr}. <br />{tr}For a rate, you can give the maximum value.{/tr} <br />{tr}For the 'multiple choices of thumbnail from a file gallery' type, options are: Gallery ID. Example: 4{/tr} {/remarksbox} </td></tr> <tr><td class="formcolor">{tr}Options (if apply){/tr}:</td><td class="formcolor"><input type="text" name="options" value="{$info.options|escape}" size="80" /></td></tr> <tr><td class="formcolor"> </td><td class="formcolor"><input type="submit" name="save" value="{tr}Save{/tr}" /></td></tr> </table> </form> <h2>{tr}Questions{/tr}</h2> {include file='find.tpl'} <table class="normal"> <tr> <th><a href="tiki-admin_survey_questions.php?surveyId={$surveyId}&offset={$offset}&sort_mode={if $sort_mode eq 'questionId_desc'}questionId_asc{else}questionId_desc{/if}">{tr}ID{/tr}</a></th> <th><a href="tiki-admin_survey_questions.php?surveyId={$surveyId}&offset={$offset}&sort_mode={if $sort_mode eq 'position_desc'}position_asc{else}position_desc{/if}">{tr}Position{/tr}</a></th> <th><a href="tiki-admin_survey_questions.php?surveyId={$surveyId}&offset={$offset}&sort_mode={if $sort_mode eq 'question_desc'}question_asc{else}question_desc{/if}">{tr}Question{/tr}</a></th> <th><a href="tiki-admin_survey_questions.php?surveyId={$surveyId}&offset={$offset}&sort_mode={if $sort_mode eq 'type_desc'}type_asc{else}type_desc{/if}">{tr}Type{/tr}</a></th> <th><a href="tiki-admin_survey_questions.php?surveyId={$surveyId}&offset={$offset}&sort_mode={if $sort_mode eq 'options_desc'}options_asc{else}options_desc{/if}">{tr}Options{/tr}</a></th> <th>{tr}Action{/tr}</th> </tr> {cycle print=false values="odd,even"} {section name=user loop=$channels} <tr> <td class="{cycle advance=false}">{$channels[user].questionId}</td> <td class="{cycle advance=false}">{$channels[user].position}</td> <td class="{cycle advance=false}">{$channels[user].question}</td> <td class="{cycle advance=false}">{$channels[user].type}</td> <td class="{cycle advance=false}">{$channels[user].options}</td> <td class="{cycle advance=false}"> {self_link _icon='page_edit' questionId=$channels[user].questionId}{tr}Edit{/tr}{/self_link} {self_link _icon='cross' remove=$channels[user].questionId}{tr}Delete{/tr}{/self_link} </td> </tr> {/section} </table> {pagination_links cant=$cant_pages step=$prefs.maxRecords offset=$offset}{/pagination_links}