root/branches/release-36/tmpl/cms/cfg_system_general.tmpl @ 2074

Revision 2074, 2.2 kB (checked in by bchoate, 19 months ago)

Removed validation for nonexistent fields. BugId:79326

  • Property svn:keywords set to Id Revision
Line 
1<mt:setvar name="page_title" value="<__trans phrase="System: General Settings">">
2<$mt:setvar name="position_actions_bottom" value="1"$>
3<mt:setvar name="system-general-settings" value="1">
4<MTSetVarBlock name="system_msg">
5    <mt:if name="error">
6        <mtapp:statusmsg
7            id="generic-error"
8            class="error">
9            <mt:var name="error">
10        </mtapp:statusmsg>
11    </mt:if>
12    <mt:if name="saved">
13        <mtapp:statusmsg
14            id="saved"
15            class="success">
16            <__trans phrase="Your settings have been saved.">
17        </mtapp:statusmsg>
18    </mt:if>
19</MTSetVarBlock>
20<MTSetVarBlock name="content_nav">
21    <mt:include name="include/cfg_system_content_nav.tmpl">
22</MTSetVarBlock>
23<mt:include name="include/header.tmpl">
24
25<script type="text/javascript">
26/* <![CDATA[ */
27function validate (f) {
28    return true;
29}
30/* ]]> */
31</script>
32
33<form action="<mt:var name="script_url">" method="post" onsubmit="return validate(this);">
34<input type="hidden" name="__mode" value="save_cfg_system_general" />
35<input type="hidden" name="return_args" value="<mt:var name="return_args" escape="html">" />
36<input type="hidden" name="magic_token" value="<mt:var name="magic_token">" />
37
38<fieldset>
39
40    <mtapp:setting
41        id="system_email_address"
42        label="<__trans phrase="System Email">"
43        hint="<__trans phrase="The email address used in the From: header of each email sent from the system.  The address is used in password recovery, commenter registration, comment, trackback notification and a few other minor events.">"
44        show_hint="1">
45        <div class="textarea-wrapper">
46            <input id="system_email_address" name="system_email_address"<mt:if name="system_email_address"> value="<mt:var name="system_email_address">"</mt:if> class="full-width" />
47        </div>
48    </mt:app:setting>
49
50</fieldset>
51
52<mt:setvarblock name="action_buttons">
53    <button
54        type="submit"
55        accesskey="s"
56        title="<__trans phrase="Save changes to these settings (s)">"
57        class="primary-button"
58        ><__trans phrase="Save Changes"></button>
59</mt:setvarblock>
60<mt:include name="include/actions_bar.tmpl" bar_position="bottom" hide_pager="1" settings_bar="1">
61
62</form>
63
64<mt:include name="include/footer.tmpl">
Note: See TracBrowser for help on using the browser.