entry.erb 642 B

123456789101112131415161718192021222324252627
  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>New Fortune</h1>
  13. <%== formTag(urla("create"), Tf::Post) %>
  14. <p>
  15. <label>Message<br /><input name="fortune[message]" value="<%= fortune["message"] %>" /></label>
  16. </p>
  17. <p>
  18. <input type="submit" value="Create" />
  19. </p>
  20. </form>
  21. <%== linkTo("Back", urla("index")) %>
  22. </body>
  23. </html>