|
|
{title url="tiki-edit_question_options.php?questionId=$questionId"}{tr}Edit question options{/tr}{/title}
|
|
|
|
|
|
<div class="t_navbar mb-4">
|
|
|
{button href="tiki-list_quizzes.php" class="btn btn-info" _text="{tr}List Quizzes{/tr}"}
|
|
|
{button href="tiki-quiz_stats.php" class="btn btn-info" _text="{tr}Quiz Stats{/tr}"}
|
|
|
{button href="tiki-quiz_stats_quiz.php?quizId=$quizId" class="btn btn-info" _text="{tr}This Quiz Stats{/tr}"}
|
|
|
{button href="tiki-edit_quiz.php?quizId=$quizId" class="btn btn-primary" _text="{tr}Edit this Quiz{/tr}"}
|
|
|
{button href="tiki-edit_quiz.php" class="btn btn-primary" _text="{tr}Admin Quizzes{/tr}"}
|
|
|
</div>
|
|
|
|
|
|
<h2>{tr}Create/edit options for question:{/tr} <a href="tiki-edit_quiz_questions.php?quizId={$question_info.quizId}&questionId={$question_info.questionId}">{$question_info.question|escape}</a></h2>
|
|
|
<form action="tiki-edit_question_options.php" method="post">
|
|
|
<input type="hidden" name="optionId" value="{$optionId|escape}">
|
|
|
<input type="hidden" name="questionId" value="{$questionId|escape}">
|
|
|
|
|
|
<div class="mb-3 row">
|
|
|
<label class="col-sm-3 col-form-label">{tr}Option{/tr}</label>
|
|
|
<div class="col-sm-7">
|
|
|
<textarea name="optionText" rows="5" cols="40" class="form-control">{$optionText|escape}</textarea>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="mb-3 row">
|
|
|
<label class="col-sm-3 col-form-label">{tr}Points{/tr}</label>
|
|
|
<div class="col-sm-7">
|
|
|
<input type="text" name="points" value="{$points|escape}" class="form-control">
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="mb-3 row">
|
|
|
<label class="col-sm-3 col-form-label"></label>
|
|
|
<div class="col-sm-7">
|
|
|
<input type="submit" class="btn btn-primary" name="save" value="{tr}Save{/tr}">
|
|
|
</div>
|
|
|
</div>
|
|
|
</form>
|
|
|
|
|
|
<h2>Options</h2>
|
|
|
|
|
|
{include file='find.tpl'}
|
|
|
|
|
|
<div class="{if $js}table-responsive{/if}"> {* table-responsive class cuts off css drop-down menus *}
|
|
|
<table class="table table-striped table-hover">
|
|
|
<tr>
|
|
|
<th><a href="tiki-edit_question_options.php?offset={$offset}&sort_mode={if $sort_mode eq 'optionId_desc'}optionId_asc{else}optionId_desc{/if}">{tr}ID{/tr}</a></th>
|
|
|
<th><a href="tiki-edit_question_options.php?offset={$offset}&sort_mode={if $sort_mode eq 'optionText_desc'}optionText_asc{else}optionText_desc{/if}">{tr}text{/tr}</a></th>
|
|
|
<th><a href="tiki-edit_question_options.php?offset={$offset}&sort_mode={if $sort_mode eq 'points_desc'}points_asc{else}points_desc{/if}">{tr}points{/tr}</a></th>
|
|
|
<th></th>
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
{section name=user loop=$channels}
|
|
|
<tr>
|
|
|
<td class="id">{$channels[user].optionId}</td>
|
|
|
<td class="text">{$channels[user].optionText|escape}</td>
|
|
|
<td class="integer">{$channels[user].points}</td>
|
|
|
<td class="action">
|
|
|
{actions}
|
|
|
{strip}
|
|
|
<action>
|
|
|
<a href="tiki-edit_question_options.php?questionId={$questionId}&offset={$offset}&sort_mode={$sort_mode}&optionId={$channels[user].optionId}">
|
|
|
{icon name='edit' _menu_text='y' _menu_icon='y' alt="{tr}Edit{/tr}"}
|
|
|
</a>
|
|
|
</action>
|
|
|
<action>
|
|
|
<a href="tiki-edit_question_options.php?questionId={$questionId}&offset={$offset}&sort_mode={$sort_mode}&remove={$channels[user].optionId}">
|
|
|
{icon name='remove' _menu_text='y' _menu_icon='y' alt="{tr}Remove{/tr}"}
|
|
|
</a>
|
|
|
</action>
|
|
|
{/strip}
|
|
|
{/actions}
|
|
|
</td>
|
|
|
</tr>
|
|
|
{sectionelse}
|
|
|
{norecords _colspan=4}
|
|
|
{/section}
|
|
|
</table>
|
|
|
</div>
|
|
|
|
|
|
{pagination_links cant=$cant_pages step=$prefs.maxRecords offset=$offset}{/pagination_links}
|