0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
templates
/
[
Home
]
File: tiki-faq_questions.tpl
{title}{tr}Admin FAQ{/tr}: {$faq_info.title}{/title} <div class="navbar"> {button href="tiki-list_faqs.php" _text="{tr}List FAQs{/tr}"} {button href="tiki-view_faq.php?faqId=$faqId" _text="{tr}View FAQ{/tr}"} {button href="tiki-list_faqs.php?faqId=$faqId" _text="{tr}Edit this FAQ{/tr}"} {button href="tiki-faq_questions.php?faqId=$faqId" _text="{tr}New Question{/tr}"} </div> <h2>{if $questionId}{tr}Edit FAQ question{/tr}{else}{tr}Add FAQ question{/tr}{/if}</h2> <form action="tiki-faq_questions.php" method="post" id="editpageform"> <input type="hidden" name="questionId" value="{$questionId|escape}" /> <input type="hidden" name="faqId" value="{$faqId|escape}" /> {* begin table *} <table class="normal"> <tr class="formcolor"> <td class="formcolor">{tr}Question{/tr}:</td> <td class="formcolor" > <textarea type="text" rows="2" cols="80" name="question">{$question|escape}</textarea> </td> </tr> <tr class="formcolor"> <td class="formcolor">{tr}Answer{/tr}: <br /> {include file="textareasize.tpl" area_name='faqans' formId='editpageform'} {if $prefs.quicktags_over_textarea neq 'y'} <br /> {include file=tiki-edit_help_tool.tpl area_name="faqans"} {/if} </td> <td class="formcolor" > {if $prefs.quicktags_over_textarea eq 'y'} {include file=tiki-edit_help_tool.tpl area_name="faqans"} {/if} <textarea id='faqans' type="text" rows="8" cols="80" name="answer">{$answer|escape}</textarea> </td> </tr> <tr class="formcolor"> <td class="formcolor"> </td> <td class="formcolor" > <input type="submit" name="save" value="{tr}Save{/tr}" /> {* set your changes and save 'em *} </td> </tr> </table> {* end table *} </form> {* This is the area for choosing questions from the db... it really should support choosing options from the answers, but only show if there are existing questions *} {if $allq} <br /><h2> {tr}Use a question from another FAQ{/tr}</h2> <form action="tiki-faq_questions.php" method="post"> <input type="hidden" name="questionId" value="{$questionId|escape}" /> <input type="hidden" name="faqId" value="{$faqId|escape}" /> <table class="normal"> <tr> <td class="formcolor">{tr}Filter{/tr}</td> <td class="formcolor"> <input type="text" name="filter" value="{$filter|escape}" /> <input type="submit" name="filteruseq" value="{tr}Filter{/tr}" /> </td> </tr> <tr> <td class="formcolor">{tr}Question{/tr}:</td> <td class="formcolor" > <select name="usequestionId"> {section name=ix loop=$allq} {* Ok, here's where you change the truncation field for this field *} <option value="{$allq[ix].questionId|escape|truncate:20:"":true}">{$allq[ix].question|escape|truncate:110:"":true}</option> {/section} </select> </td> </tr> <tr> <td class="formcolor"> </td> <td class="formcolor"> <input type="submit" name="useq" value="{tr}Use{/tr}" /> </td> </tr> </table> </form> {/if} <br /> {* next big chunk *} <br /> <h2>{tr}FAQ questions{/tr}</h2> {if $channels or ($find ne '')} {include file='find.tpl'} {/if} <table class="normal"> <tr> <th> <a href="tiki-faq_questions.php?faqId={$faqId}&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-faq_questions.php?faqId={$faqId}&offset={$offset}&sort_mode={if $sort_mode eq 'question_desc'}question_asc{else}question_desc{/if}">{tr}Question{/tr}</a> </th> <th>{tr}Action{/tr}</th> </tr> {cycle values="odd,even" print=false} {section name=user loop=$channels} <tr> <td class="{cycle advance=false}">{$channels[user].questionId}</td> <td class="{cycle advance=false}">{$channels[user].question}</td> <td class="{cycle}" width="80px"> <a class="link" href="tiki-faq_questions.php?faqId={$faqId}&offset={$offset}&sort_mode={$sort_mode}&questionId={$channels[user].questionId}">{icon _id='page_edit'}</a> <a class="link" href="tiki-faq_questions.php?faqId={$faqId}&offset={$offset}&sort_mode={$sort_mode}&remove={$channels[user].questionId}">{icon _id='cross' alt='{tr}Remove{/tr}'}</a> </td> </tr> {sectionelse} <tr><td class="odd" colspan="3">{tr}No records{/tr}</td></tr> {/section} </table> {pagination_links cant=$cant_pages step=$prefs.maxRecords offset=$offset}{/pagination_links} {if count($suggested) > 0} <h2>{tr}Suggested questions{/tr}</h2> <table class="normal"> <tr> <th>{tr}Question{/tr}</th> <th>{tr}Answer{/tr}</th> <th>{tr}Action{/tr}</th> </tr> {cycle values="odd,even" print=false} {section name=ix loop=$suggested} <tr> <td class="{cycle advance=false}">{$suggested[ix].question} </td> <td class="{cycle advance=false}">{$suggested[ix].answer}</td> <td class="{cycle}" width='80px'> <a class="link" href="tiki-faq_questions.php?faqId={$faqId}&offset={$offset}&sort_mode={$sort_mode}&approve_suggested={$suggested[ix].sfqId}" alt="{tr}Approve{/tr}">{icon _id=accept alt="{tr}Approve{/tr}"}</a> <a class="link" href="tiki-faq_questions.php?faqId={$faqId}&offset={$offset}&sort_mode={$sort_mode}&remove_suggested={$suggested[ix].sfqId}">{icon _id=cross alt="{tr}Remove{/tr}"}</a> </td> </tr> {/section} </table> {else} <h2>{tr}No suggested questions{/tr}</h2> {/if} {include file=tiki-edit_help.tpl}