-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathqueue_validate.html
More file actions
78 lines (63 loc) · 2.46 KB
/
queue_validate.html
File metadata and controls
78 lines (63 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{% INCLUDE 'overall_header.html' %}
<form id="{{ POSTING_FORM_NAME }}" method="post" action="{{ S_CONFIRM_ACTION }}" {{ S_FORM_ENCTYPE }}>
{% if S_DISPLAY_PREVIEW %}{% INCLUDE '@phpbb_titania/posting/posting_preview.html' %}{% endif %}
{% if PUBLIC_PREVIEW_MESSAGE %}
<div class="post bg2" id="preview">
<div class="inner">
<div class="postbody">
<h3>{{ lang('PREVIEW') ~ lang('COLON') }} {{ PUBLIC_PREVIEW_SUBJECT }}</h3>
<div class="content">{{ PUBLIC_PREVIEW_MESSAGE }}</div>
</div>
</div>
</div>
<hr />
{% endif %}
<div class="panel">
<div class="inner">
<h2>{{ PAGE_TITLE }}</h2>
<p>{{ PAGE_TITLE_EXPLAIN }}</p>
{% if S_SHOW_POST_AS_OPTION %}
<fieldset>
<dl>
<dt style="width: auto"><label>{{ POST_AS_LABEL ~ lang('COLON') }}</label></dt>
<dd style="margin: 0 0 12px 10%">
<label><input type="radio" name="post_as_robot" value="1"{% if POST_AS_ROBOT %} checked="checked"{% endif %} />{{ ROBOT_NAME }}</label>
<label><input type="radio" name="post_as_robot" value="0"{% if not POST_AS_ROBOT %} checked="checked"{% endif %} />{{ lang('POST_AS_SELF') }}</label>
</dd>
</dl>
</fieldset>
{% endif %}
<fieldset>
{% if S_STYLE_DEMO_INSTALL %}
<dl>
<dt><label for="name">{{ lang('STYLE_DEMO_INSTALL') ~ lang('COLON') }}</label></dt>
<dd><input type="checkbox" name="style_demo_install" id="style_demo_install"{% if S_STYLE_DEMO_INSTALL_CHECKED %} checked="checked"{% endif %} /></dd>
</dl>
{% endif %}
<dl>
<dt><label for="{{ POSTING_TEXT_NAME }}">{{ lang('VALIDATION_MESSAGE') ~ lang('COLON') }}</label></dt>
</dl>
</fieldset>
{% INCLUDE '@phpbb_titania/posting/posting_basic_editor.html' %}
{% if S_PUBLIC_NOTES %}
<fieldset>
<dl>
<dt><label for="public_notes">{{ lang('PUBLIC_NOTES') ~ lang('COLON') }}</label></dt>
</dl>
<div id="message-box">
<textarea name="public_notes" id="public_notes" rows="10" cols="76" class="inputbox">{{ PUBLIC_MESSAGE }}</textarea>
</div>
</fieldset>
{% endif %}
<fieldset class="submit-buttons">
{{ S_HIDDEN_FIELDS }}
{{ S_FORM_TOKEN }}
<input type="hidden" id="open_panel" name="open_panel" value="{{ POSTING_PANELS_DEFAULT }}" />
<input type="submit" tabindex="3" name="preview" value="{{ lang('PREVIEW') }}" class="button1" />
<input type="submit" tabindex="4" accesskey="s" name="submit" value="{{ lang('SUBMIT') }}" class="button1" />
</fieldset>
</div>
</div>
{% INCLUDE '@phpbb_titania/posting/posting_topic_review.html' %}
</form>
{% INCLUDE 'overall_footer.html' %}