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 |
report_body.html
01 <!-- INCLUDE overall_header.html -->
02
03 <h2 class="titlespace"><!-- IF S_REPORT_POST -->{L_REPORT_POST}<!-- ELSE -->{L_REPORT_MESSAGE}<!-- ENDIF --></h2>
04
05 <form method="post" action="{S_REPORT_ACTION}" id="report">
06 <div class="panel">
07 <div class="inner">
08
09 <div class="content">
10 <p><!-- IF S_REPORT_POST -->{L_REPORT_POST_EXPLAIN}<!-- ELSE -->{L_REPORT_MESSAGE_EXPLAIN}<!-- ENDIF --></p>
11
12 <fieldset>
13 <!-- IF ERROR --><dl><dd class="error">{ERROR}</dd></dl><!-- ENDIF -->
14 <dl class="fields2">
15 <dt><label for="reason_id">{L_REASON}{L_COLON}</label></dt>
16 <dd><select name="reason_id" id="reason_id" class="full"><!-- BEGIN reason --><option value="{reason.ID}"<!-- IF reason.S_SELECTED --> selected="selected"<!-- ENDIF -->>{reason.DESCRIPTION}</option><!-- END reason --></select></dd>
17 </dl>
18 <!-- IF S_CAN_NOTIFY -->
19 <dl class="fields2">
20 <dt><label for="notify1">{L_REPORT_NOTIFY}{L_COLON}</label><br /><span>{L_REPORT_NOTIFY_EXPLAIN}</span></dt>
21 <dd>
22 <label for="notify1"><input type="radio" name="notify" id="notify1" value="1" <!-- IF not S_NOTIFY -->checked="checked"<!-- ENDIF --> /> {L_YES}</label>
23 <label for="notify0"><input type="radio" name="notify" id="notify0" value="0" <!-- IF S_NOTIFY -->checked="checked"<!-- ENDIF --> /> {L_NO}</label>
24 </dd>
25 </dl>
26 <!-- ENDIF -->
27 <dl class="fields2">
28 <dt><label for="report_text">{L_MORE_INFO}{L_COLON}</label><br /><span>{L_CAN_LEAVE_BLANK}</span></dt>
29 <dd><textarea name="report_text" id="report_text" rows="10" cols="76" class="inputbox">{REPORT_TEXT}</textarea></dd>
30 </dl>
31 <!-- IF CAPTCHA_TEMPLATE -->
32 <!-- INCLUDE {CAPTCHA_TEMPLATE} -->
33 <!-- ENDIF -->
34 </fieldset>
35 </div>
36
37 </div>
38 </div>
39
40 <div class="panel">
41 <div class="inner">
42
43 <div class="content">
44 <fieldset class="submit-buttons">
45 <input type="submit" name="submit" class="button1" value="{L_SUBMIT}" />
46 <input type="submit" name="cancel" class="button2" value="{L_CANCEL}" />
47 {S_FORM_TOKEN}
48 </fieldset>
49 </div>
50
51 </div>
52 </div>
53 </form>
54
55 <!-- INCLUDE overall_footer.html -->
56