Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
captcha_qa_acp.html
01 <!-- INCLUDE overall_header.html -->
02
03 <a id="maincontent"></a>
04
05
06 <a href="<!-- IF U_LIST -->{U_LIST}<!-- ELSE -->{U_ACTION}<!-- ENDIF -->" style="float: {S_CONTENT_FLOW_END};">« {L_BACK}</a>
07
08 <h1>{L_QUESTIONS}</h1>
09
10 <p>{L_QUESTIONS_EXPLAIN}</p>
11 <!-- IF S_LIST -->
12 <form id="captcha_qa" method="post" action="{U_ACTION}">
13
14 <fieldset class="tabulated">
15 <legend>{L_QUESTIONS}</legend>
16
17 <table class="table1 zebra-table">
18 <thead>
19 <tr>
20 <th colspan="3">{L_QUESTIONS}</th>
21 </tr>
22 <tr class="row3">
23 <td style="text-align: center;">{L_QUESTION_TEXT}</td>
24 <td style="width: 5%; text-align: center;">{L_QUESTION_LANG}</td>
25 <td style="vertical-align: top; width: 50px; text-align: center; white-space: nowrap;">{L_ACTION}</td>
26 </tr>
27 </thead>
28 <tbody>
29 <!-- BEGIN questions -->
30 <tr>
31 <td style="text-align: left;">{questions.QUESTION_TEXT}</td>
32 <td style="text-align: center;">{questions.QUESTION_LANG}</td>
33 <td style="text-align: center;"><a href="{questions.U_EDIT}">{ICON_EDIT}</a> <a href="{questions.U_DELETE}">{ICON_DELETE}</a></td>
34 </tr>
35 <!-- END questions -->
36 </tbody>
37 </table>
38 <fieldset class="quick">
39 <input class="button1" type="submit" name="add" value="{L_ADD}" />
40 <input type="hidden" name="action" value="add" />
41 <input type="hidden" name="configure" value="1" />
42 <input type="hidden" name="select_captcha" value="{CLASS}" />
43
44 {S_FORM_TOKEN}
45 </fieldset>
46 {S_FORM_TOKEN}
47 </fieldset>
48 </form>
49 <!-- ELSE -->
50 <!-- IF S_ERROR -->
51 <div class="errorbox">
52 <h3>{L_WARNING}</h3>
53 <p>{L_QA_ERROR_MSG}</p>
54 </div>
55 <!-- ENDIF -->
56 <form id="captcha_qa" method="post" action="{U_ACTION}">
57 <fieldset>
58 <legend>{L_EDIT_QUESTION}</legend>
59 <dl>
60 <dt><label for="strict">{L_QUESTION_STRICT}{L_COLON}</label><br /><span>{L_QUESTION_STRICT_EXPLAIN}</span></dt>
61 <dd><label><input type="radio" class="radio" name="strict" value="1"<!-- IF STRICT --> id="strict" checked="checked"<!-- ENDIF --> /> {L_YES}</label>
62 <label><input type="radio" class="radio" name="strict" value="0"<!-- IF not STRICT --> id="strict" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd>
63 </dl>
64
65 <dl>
66 <dt><label for="lang_iso">{L_QUESTION_LANG}</label><br /><span>{L_QUESTION_LANG_EXPLAIN}</span></dt>
67 <dd><select id="lang_iso" name="lang_iso"><!-- BEGIN langs --><option value="{langs.ISO}" <!-- IF langs.ISO == LANG_ISO --> selected="selected" <!-- ENDIF -->>{langs.NAME}</option><!-- END langs --></select></dd>
68 </dl>
69 <dl>
70 <dt><label for="question_text">{L_QUESTION_TEXT}</label><br /><span>{L_QUESTION_TEXT_EXPLAIN}</span></dt>
71 <dd><input id="question_text" maxlength="255" size="60" name="question_text" type="text" value="{QUESTION_TEXT}" /></dd>
72 </dl>
73 <dl>
74 <dt><label for="answers">{L_QUESTION_ANSWERS}</label><br /><span>{L_ANSWERS_EXPLAIN}</span></dt>
75 <dd><textarea id="answers" style="word-wrap: normal; overflow-x: scroll;" name="answers" rows="15" cols="800" >{ANSWERS}</textarea></dd>
76 </dl>
77 </fieldset>
78 <fieldset class="quick">
79 <input class="button1" type="submit" name="submit" value="{L_SUBMIT}" />
80 <input type="hidden" name="question_id" value="{QUESTION_ID}" />
81 <input type="hidden" name="action" value="add" />
82 <input type="hidden" name="configure" value="1" />
83 <input type="hidden" name="select_captcha" value="{CLASS}" />
84
85 {S_FORM_TOKEN}
86 </fieldset>
87 </form>
88 <!-- ENDIF -->
89
90 <!-- INCLUDE overall_footer.html -->
91