edit.erb 854 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE HTML>
  2. <%#include "fortune.h" %>
  3. <% tfetch(QVariantMap, fortune); %>
  4. <html>
  5. <head>
  6. <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
  7. <title><%= controller()->name() + ": " + controller()->activeAction() %></title>
  8. </head>
  9. <body>
  10. <p style="color: red"><%=$ error %></p>
  11. <p style="color: green"><%=$ notice %></p>
  12. <h1>Editing Fortune</h1>
  13. <%== formTag(urla("save", fortune["id"]), Tf::Post) %>
  14. <p>
  15. <label>ID<br /><input type="text" name="fortune[id]" value="<%= fortune["id"] %>" readonly="readonly" /></label>
  16. </p>
  17. <p>
  18. <label>Message<br /><input type="text" name="fortune[message]" value="<%= fortune["message"] %>" /></label>
  19. </p>
  20. <p>
  21. <input type="submit" value="Update" />
  22. </p>
  23. </form>
  24. <%== linkTo("Show", urla("show", fortune["id"])) %> |
  25. <%== linkTo("Back", urla("index")) %>
  26. </body>
  27. </html>