0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
templates
/
[
Home
]
File: tiki-edit_quiz.tpl
{title help="Quiz"}{tr}Admin Quizzes{/tr}{/title} <div class="navbar"> {button href="tiki-list_quizzes.php" _text="{tr}List Quizzes{/tr}"} {button href="tiki-quiz_stats.php" _text="{tr}Quiz Stats{/tr}"} </div> {tabset} {tab name="{tr}Quizzes{/tr}"} {include file='find.tpl'} <table class="normal"> <tr> <th> {self_link _sort_arg='sort_mode' _sort_field='quizId'}{tr}ID{/tr}{/self_link} </th> <th> {self_link _sort_arg='sort_mode' _sort_field='name'}{tr}Quiz{/tr}{/self_link} </th> <th> {self_link _sort_arg='sort_mode' _sort_field='canRepeat'}{tr}canRepeat{/tr}{/self_link} </th> <th> {self_link _sort_arg='sort_mode' _sort_field='timeLimit'}{tr}timeLimit{/tr}{/self_link} </th> <th>{tr}Questions{/tr}</th> <th>{tr}Results{/tr}</th> <th>{tr}Actions{/tr}</th> </tr> {cycle values="odd,even" print=false} {section name=user loop=$channels} <tr class="{cycle}"> <td class="id">{$channels[user].quizId}</td> <td class="text"> {$channels[user].name|escape} <div class="subcomment"> {$channels[user].description|escape|nl2br} </div> </td> <td class="text">{$channels[user].canRepeat}</td> <td class="text">{$channels[user].timeLimited} {if $channels[user].timeLimited eq 'y'}({$channels[user].timeLimit} mins){/if}</td> <td class="integer">{$channels[user].questions}</td> <td class="integer">{$channels[user].results}</td> <td class="action"> {self_link _icon='page_edit' cookietab='2' _anchor='anchor2' quizId=$channels[user].quizId}{tr}Edit{/tr}{/self_link} <a class="link" href="tiki-edit_quiz_questions.php?quizId={$channels[user].quizId}">{icon _id='help' alt="{tr}Questions{/tr}" title="{tr}Questions{/tr}"}</a> <a class="link" href="tiki-edit_quiz_results.php?quizId={$channels[user].quizId}">{icon _id='application_form_magnify' alt="{tr}Results{/tr}" title="{tr}Results{/tr}"}</a> <a class="link" href="tiki-objectpermissions.php?objectName={$channels[user].name|escape:"url"}&objectType=quiz&permType=quizzes&objectId={$channels[user].quizId}"> {if $channels[user].individual eq 'y'} {icon _id='key_active' alt="{tr}Active Perms{/tr}"} {else} {icon _id='key' alt="{tr}Perms{/tr}"} {/if} </a> <a class="link" href="tiki-edit_quiz.php?offset={$offset}&sort_mode={$sort_mode}&remove={$channels[user].quizId}">{icon _id='cross' alt="{tr}Remove{/tr}"}</a> </td> </tr> {sectionelse} {norecords _colspan=7} {/section} </table> {pagination_links cant=$cant_pages step=$prefs.maxRecords offset=$offset}{/pagination_links} {/tab} {tab name="{tr}Create/edit quizzes{/tr}"} {if $individual eq 'y'} <a class="link" href="tiki-objectpermissions.php?objectName={$name|escape:"url"}&objectType=quiz&permType=quizzes&objectId={$quizId}">{tr}There are individual permissions set for this quiz{/tr}</a> <br /> <br /> {/if} <form action="tiki-edit_quiz.php" method="post"> <input type="hidden" name="quizId" value="{$quizId|escape}" /> <table class="formcolor"> <tr> <td> <label for="quiz-name">{tr}Name:{/tr}</label> </td> <td> <input type="text" size ="80" name="name" id="quiz-name" value="{$name|escape}" /> </td> </tr> <tr> <td> <label for="quiz-desc">{tr}Description:{/tr}</label> </td> <td> <textarea name="description" id="quiz-desc" rows="4" cols="75">{$description|escape}</textarea> </td> </tr> {include file='categorize.tpl'} <tr> <td>{tr}Publish Date{/tr}</td> <td> {html_select_date prefix="publish_" time=$publishDateSite start_year="-5" end_year="+10" field_order=$prefs.display_field_order} {tr}at{/tr} <span dir="ltr"> {html_select_time prefix="publish_" time=$publishDateSite display_seconds=false use_24_hours=$use_24hr_clock} {$siteTimeZone} </span> </td> </tr> <tr> <td>{tr}Expiration Date{/tr}</td> <td> {html_select_date prefix="expire_" time=$expireDateSite start_year="-5" end_year="+10" field_order=$prefs.display_field_order} {tr}at{/tr} <span dir="ltr">{html_select_time prefix="expire_" time=$expireDateSite display_seconds=false use_24_hours=$use_24hr_clock} {$siteTimeZone} </span> </td> </tr> <tr> <td> <label for="quiz-repeat">{tr}Quiz can be repeated{/tr}</label> </td> <td> <input type="checkbox" name="canRepeat" id="quiz-repeat" {if $canRepeat eq 'y'}checked="checked"{/if} /> </td> </tr> <tr> <td> <label for="quiz-results">{tr}Store quiz results{/tr}</label> </td> <td> <input type="checkbox" name="storeResults" id="quiz-results" {if $storeResults eq 'y'}checked="checked"{/if} /> </td> </tr> <tr> <td> <label for="immediate-feedback">{tr}Immediate feedback{/tr}</label> </td> <td> <input type="checkbox" name="immediateFeedback" id="immediate-feedback" {if $immediateFeedback eq 'y'}checked="checked"{/if} /> </td> </tr> <tr> <td> <label for="show-answers">{tr}Show correct answers{/tr}</label> </td> <td> <input type="checkbox" name="showAnswers" id="show-answers" {if $showAnswers eq 'y'}checked="checked"{/if} /> </td> </tr> <tr> <td> <label for="shuffle-questions">{tr}Shuffle questions{/tr}</label> </td> <td> <input type="checkbox" name="shuffleQuestions" id="shuffle-questions" {if $shuffleQuestions eq 'y'}checked="checked"{/if} /> </td> </tr> <tr> <td> <label for="shuffle-answers">{tr}Shuffle answers{/tr}</label> </td> <td> <input type="checkbox" name="shuffleAnswers" id="shuffle-answers" {if $shuffleAnswers eq 'y'}checked="checked"{/if} /> </td> </tr> <tr> <td> <label for="quiz-timelimit">{tr}Quiz is time limited{/tr}</label> </td> <td> <input type="checkbox" name="timeLimited" id="quiz-timelimit" {if $timeLimited eq 'y'}checked="checked"{/if} /> </td> </tr> <tr> <td> <label for="quiz-maxtime">{tr}Maximum time{/tr}</label> </td> <td> <select name="timeLimit" id="quiz-maxtime">{html_options values=$mins selected=$timeLimit output=$mins}</select> {tr}minutes{/tr} </td> </tr> <tr> <td> <label for="quiz-passingperct">{tr}Passing Percentage{/tr}</label> </td> <td> <input type="text" name="passingperct" id="quiz-passingperct" size='3' maxlength='3' value="{$passingperct}" /> {tr}%{/tr} </td> </tr> <tr> <td> </td> <td> <input type="submit" name="save" value="{tr}Save{/tr}" /> </td> </tr> </table> </form> {/tab} {/tabset}