chiark / gitweb /
Missed an action button in earlier changes
[disorder] / templates / macros.tmpl
index 3132e570eaf9167051768e9c6b4be46e26dbf520..33d1fb27d99caf995a5863c8239e2520c1f2e03a 100644 (file)
@@ -24,7 +24,7 @@ Standard macros
 This file is read before any other template.  Its output is discarded
 but side effects (definitions of macros) are retained.  To override it,
 create /etc/disorder/macros.tmpl that includes this file by absolute path
-and then redefines macros as desired.
+and then redefine macros as desired.
 ------------------------------------------------------------------------
 
 
@@ -280,19 +280,18 @@ and then redefines macros as desired.
 @# Expand to a submit button
 @#  @text is the text to put inside the button
 @define {submit} {text}
-        {<span class=buttonouter><button class=button name=submit type=submit><span class=buttoninner>@text</span></button></span>}
+        {<button class=button name=submit type=submit>@text</button>}
 
 @# Expand to an action button
 @#  @text is the text to put inside the button
 @#  @long is the text to put in the caption
 @#  @action is the target action
 @define {actbutton} {text long action}
-        {<form method=GET class=button action="@url">
+        {<form method=POST class=button action="@url">
            <input type=hidden name=action value="@action">
            <input type=submit name=submit value="@text" title="@long">
 @formback@#
          </form>}
-@# TODO @back support
 
 @# Used for inserting back= elements
 @define {back} {} {}