Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
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 <a href="<!-- IF U_LIST -->{U_LIST}<!-- ELSE -->{U_ACTION}<!-- ENDIF -->" style="float: {S_CONTENT_FLOW_END};">« {L_BACK}</a>
06
07 <h1>{L_QUESTIONS}</h1>
08
09 <p>{L_QUESTIONS_EXPLAIN}</p>
10 <!-- IF S_LIST -->
11 <form id="captcha_qa" method="post" action="{U_ACTION}">
12
13 <fieldset class="tabulated">
14 <legend>{L_QUESTIONS}</legend>
15
16 <table class="table1 zebra-table">
17 <thead>
18 <tr>
19 <th colspan="3">{L_QUESTIONS}</th>
20 </tr>
21 <tr class="row3">
22 <td style="text-align: center;">{L_QUESTION_TEXT}</td>
23 <td style="width: 5%; text-align: center;">{L_QUESTION_LANG}</td>
24 <td style="vertical-align: top; width: 50px; text-align: center; white-space: nowrap;">{L_ACTION}</td>
25 </tr>
26 </thead>
27
28 <tbody>
29 {% for question in questions %}
30 <tr>
31 {# RTL is already managed by CSS #}
32 <td>{{ question.QUESTION_TEXT }}</td>
33 <td style="text-align: center;">{{ question.QUESTION_LANG }}</td>
34 <td style="text-align: center;"><a href="{{ question.U_EDIT }}">{{ ICON_EDIT }}</a> <a href="{{ question.U_DELETE }}">{{ ICON_DELETE }}</a></td>
35 </tr>
36 {% endfor %}
37 </tbody>
38
39 </table>
40 <fieldset class="quick">
41 <input class="button1" type="submit" name="add" value="{L_ADD}" />
42 <input type="hidden" name="action" value="add" />
43 <input type="hidden" name="configure" value="1" />
44 <input type="hidden" name="select_captcha" value="{CLASS}" />
45
46 {S_FORM_TOKEN}
47 </fieldset>
48 {S_FORM_TOKEN}
49 </fieldset>
50 </form>
51 <!-- ELSE -->
52 <!-- IF S_ERROR -->
53 <div class="errorbox">
54 <h3>{L_WARNING}</h3>
55 <p>{L_QA_ERROR_MSG}</p>
56 </div>
57 <!-- ENDIF -->
58 <form id="captcha_qa" method="post" action="{U_ACTION}">
59 <fieldset>
60 <legend>{L_EDIT_QUESTION}</legend>
61 <dl>
62 <dt><label for="strict">{L_QUESTION_STRICT}{L_COLON}</label><br /><span>{L_QUESTION_STRICT_EXPLAIN}</span></dt>
63 <dd><label><input type="radio" class="radio" name="strict" value="1"<!-- IF STRICT --> id="strict" checked="checked"<!-- ENDIF --> /> {L_YES}</label>
64 <label><input type="radio" class="radio" name="strict" value="0"<!-- IF not STRICT --> id="strict" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd>
65 </dl>
66
67 <dl>
68 <dt><label for="lang_iso">{L_QUESTION_LANG}</label><br /><span>{L_QUESTION_LANG_EXPLAIN}</span></dt>
69 <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>
70 </dl>
71 <dl>
72 <dt><label for="question_text">{L_QUESTION_TEXT}</label><br /><span>{L_QUESTION_TEXT_EXPLAIN}</span></dt>
73 <dd><input id="question_text" maxlength="255" size="60" name="question_text" type="text" value="{QUESTION_TEXT}" /></dd>
74 </dl>
75 <dl>
76 <dt><label for="answers">{L_QUESTION_ANSWERS}</label><br /><span>{L_ANSWERS_EXPLAIN}</span></dt>
77 <dd><textarea id="answers" style="word-wrap: normal; overflow-x: scroll;" name="answers" rows="15" cols="800" >{ANSWERS}</textarea></dd>
78 </dl>
79 </fieldset>
80 <fieldset class="quick">
81 <input class="button1" type="submit" name="submit" value="{L_SUBMIT}" />
82 <input type="hidden" name="question_id" value="{QUESTION_ID}" />
83 <input type="hidden" name="action" value="add" />
84 <input type="hidden" name="configure" value="1" />
85 <input type="hidden" name="select_captcha" value="{CLASS}" />
86
87 {S_FORM_TOKEN}
88 </fieldset>
89 </form>
90 <!-- ENDIF -->
91
92 <!-- INCLUDE overall_footer.html -->
93