Move avatar from options to profile.
[Sone.git] / src / main / resources / templates / options.html
1 <%include include/head.html>
2
3         <script language="javascript">
4                 $(document).ready(function() {
5                         getTranslation("WebInterface.DefaultText.Option.InsertionDelay", function(insertionDelayDefaultText) {
6                                 registerInputTextareaSwap("#sone #options input[name=insertion-delay]", insertionDelayDefaultText, "insertion-delay", true, true);
7                         });
8                         getTranslation("WebInterface.DefaultText.Option.PostsPerPage", function(postsPerPageText) {
9                                 registerInputTextareaSwap("#sone #options input[name=posts-per-page]", postsPerPageText, "posts-per-page", true, true);
10                         });
11                         getTranslation("WebInterface.DefaultText.Option.CharactersPerPost", function(postsPerPageText) {
12                                 registerInputTextareaSwap("#sone #options input[name=characters-per-post]", postsPerPageText, "characters-per-post", true, true);
13                         });
14                         getTranslation("WebInterface.DefaultText.Option.PostCutOffLength", function(postCutOffLengthText) {
15                                 registerInputTextareaSwap("#sone #options input[name=post-cut-off-length]", postCutOffLengthText, "post-cut-off-length", true, true);
16                         });
17                         getTranslation("WebInterface.DefaultText.Option.PositiveTrust", function(positiveTrustText) {
18                                 registerInputTextareaSwap("#sone #options input[name=positive-trust]", positiveTrustText, "positive-trust", true, true);
19                         });
20                         getTranslation("WebInterface.DefaultText.Option.NegativeTrust", function(negativeTrustText) {
21                                 registerInputTextareaSwap("#sone #options input[name=negative-trust]", negativeTrustText, "negative-trust", true, true);
22                         });
23                         getTranslation("WebInterface.DefaultText.Option.TrustComment", function(trustCommentText) {
24                                 registerInputTextareaSwap("#sone #options input[name=trust-comment]", trustCommentText, "trust-comment", true, true);
25                         });
26                 });
27         </script>
28
29         <h1><%= Page.Options.Page.Title|l10n|html></h1>
30
31         <p><%= Page.Options.Page.Description|l10n|html></p>
32
33         <form id="options" method="post">
34                 <input type="hidden" name="formPassword" value="<% formPassword|html>" />
35
36                 <h2><%= Page.Options.Section.SoneSpecificOptions.Title|l10n|html></h2>
37
38                 <%ifnull currentSone>
39                         <p><%= Page.Options.Section.SoneSpecificOptions.NotLoggedIn|l10n|html|replace needle="{link}" replacement='<a href="login.html">'|replace needle="{/link}" replacement='</a>'></p>
40                 <%else>
41                         <p><%= Page.Options.Section.SoneSpecificOptions.LoggedIn|l10n|html></p>
42                 <%/if>
43
44                 <p>
45                         <input type="checkbox" name="auto-follow"<%ifnull currentSone> disabled="disabled"<%/if><%if auto-follow> checked="checked"<%/if> />
46                         <%= Page.Options.Option.AutoFollow.Description|l10n|html>
47                 </p>
48
49                 <p>
50                         <input type="checkbox" name="enable-sone-insert-notifications"<%ifnull currentSone> disabled="disabled"<%/if><%if enable-sone-insert-notifications> checked="checked"<%/if> />
51                         <%= Page.Options.Option.EnableSoneInsertNotifications.Description|l10n|html>
52                 </p>
53
54                 <p>
55                         <input type="checkbox" name="show-notification-new-sones"<%ifnull currentSone> disabled="disabled"<%/if><%if show-notification-new-sones> checked="checked"<%/if>/>
56                         <%= Page.Options.Option.ShowNotificationNewSones.Description|l10n|html>
57                 </p>
58
59                 <p>
60                         <input type="checkbox" name="show-notification-new-posts"<%ifnull currentSone> disabled="disabled"<%/if><%if show-notification-new-posts> checked="checked"<%/if>/>
61                         <%= Page.Options.Option.ShowNotificationNewPosts.Description|l10n|html>
62                 </p>
63
64                 <p>
65                         <input type="checkbox" name="show-notification-new-replies"<%ifnull currentSone> disabled="disabled"<%/if><%if show-notification-new-replies> checked="checked"<%/if>/>
66                         <%= Page.Options.Option.ShowNotificationNewReplies.Description|l10n|html>
67                 </p>
68
69                 <%ifnull !currentSone>
70                 <%/if>
71
72                 <h2><%= Page.Options.Section.RuntimeOptions.Title|l10n|html></h2>
73
74                 <p><%= Page.Options.Option.InsertionDelay.Description|l10n|html></p>
75                 <%if =insertion-delay|in collection=fieldErrors>
76                         <p class="warning"><%= Page.Options.Warnings.ValueNotChanged|l10n|html></p>
77                 <%/if>
78                 <p><input type="text" name="insertion-delay" value="<% insertion-delay|html>" /></p>
79
80                 <p><%= Page.Options.Option.PostsPerPage.Description|l10n|html></p>
81                 <%if =posts-per-page|in collection=fieldErrors>
82                         <p class="warning"><%= Page.Options.Warnings.ValueNotChanged|l10n|html></p>
83                 <%/if>
84                 <p><input type="text" name="posts-per-page" value="<% posts-per-page|html>" /></p>
85
86                 <p><%= Page.Options.Option.CharactersPerPost.Description|l10n|html></p>
87                 <%if =characters-per-post|in collection=fieldErrors>
88                         <p class="warning"><%= Page.Options.Warnings.ValueNotChanged|l10n|html></p>
89                 <%/if>
90                 <p><input type="text" name="characters-per-post" value="<% characters-per-post|html>" /></p>
91
92                 <p><%= Page.Options.Option.PostCutOffLength.Description|l10n|html></p>
93                 <%if =post-cut-off-length|in collection=fieldErrors>
94                         <p class="warning"><%= Page.Options.Warnings.ValueNotChanged|l10n|html></p>
95                 <%/if>
96                 <p><input type="text" name="post-cut-off-length" value="<% post-cut-off-length|html>" /></p>
97
98                 <p>
99                         <input type="checkbox" name="require-full-access"<%if require-full-access> checked="checked"<%/if> />
100                         <%= Page.Options.Option.RequireFullAccess.Description|l10n|html></p>
101                 </p>
102
103                 <h2><%= Page.Options.Section.TrustOptions.Title|l10n|html></h2>
104
105                 <p><%= Page.Options.Option.PositiveTrust.Description|l10n|html></p>
106                 <%if =positive-trust|in collection=fieldErrors>
107                         <p class="warning"><%= Page.Options.Warnings.ValueNotChanged|l10n|html></p>
108                 <%/if>
109                 <p><input type="text" name="positive-trust" value="<% positive-trust|html>" /></p>
110
111                 <p><%= Page.Options.Option.NegativeTrust.Description|l10n|html></p>
112                 <%if =negative-trust|in collection=fieldErrors>
113                         <p class="warning"><%= Page.Options.Warnings.ValueNotChanged|l10n|html></p>
114                 <%/if>
115                 <p><input type="text" name="negative-trust" value="<% negative-trust|html>" /></p>
116
117                 <p><%= Page.Options.Option.TrustComment.Description|l10n|html></p>
118                 <p><input type="text" name="trust-comment" value="<% trust-comment|html>" /></p>
119
120                 <h2><%= Page.Options.Section.FcpOptions.Title|l10n|html></h2>
121
122                 <p><input type="checkbox" name="fcp-interface-active"<%if fcp-interface-active> checked="checked"<%/if> /> <%= Page.Options.Option.FcpInterfaceActive.Description|l10n|html></p>
123
124                 <p>
125                         <%= Page.Options.Option.FcpFullAccessRequired.Description|l10n|html|replace needle="{link}" replacement='<a href="/config/fcp">'|replace needle="{/link}" replacement='</a>'>
126                         <select name="fcp-full-access-required">
127                                 <option value="0"<%if fcp-full-access-required|match value="0"> selected="selected"<%/if>><%= Page.Options.Option.FcpFullAccessRequired.Value.No|l10n|html></option>
128                                 <option value="1"<%if fcp-full-access-required|match value="1"> selected="selected"<%/if>><%= Page.Options.Option.FcpFullAccessRequired.Value.Writing|l10n|html></option>
129                                 <option value="2"<%if fcp-full-access-required|match value="2"> selected="selected"<%/if>><%= Page.Options.Option.FcpFullAccessRequired.Value.Always|l10n|html></option>
130                         </select>
131                 </p>
132
133                 <h2><%= Page.Options.Section.Cleaning.Title|l10n|html></h2>
134
135                 <p><%= Page.Options.Option.ClearOnNextRestart.Description|l10n|html|replace needle="{strong}" replacement="<strong>"|replace needle="{/strong}" replacement="</strong>"></p>
136                 <p><select name="clear-on-next-restart"><option disabled="disabled"><%= WebInterface.SelectBox.Choose|l10n|html></option><option value="true"<%if clear-on-next-restart> selected="selected"<%/if>><%= WebInterface.SelectBox.Yes|l10n|html></option><option value="false"<%if ! clear-on-next-restart> selected="selected"<%/if>><%= WebInterface.SelectBox.No|l10n|html></option></select>
137
138                 <p><%= Page.Options.Option.ReallyClearOnNextRestart.Description|l10n|html|replace needle="{strong}" replacement="<strong>"|replace needle="{/strong}" replacement="</strong>"></p>
139                 <p><select name="really-clear-on-next-restart"><option disabled="disabled"><%= WebInterface.SelectBox.Choose|l10n|html></option><option value="true"<%if really-clear-on-next-restart> selected="selected"<%/if>><%= WebInterface.SelectBox.Yes|l10n|html></option><option value="false"<%if ! really-clear-on-next-restart> selected="selected"<%/if>><%= WebInterface.SelectBox.No|l10n|html></option></select>
140
141                 <p><button type="submit"><%= Page.Options.Button.Save|l10n|html></button></p>
142
143         </form>
144
145 <%include include/tail.html>