series.tx 919 B

12345678910111213141516
  1. <form class="Submissions" action="/post/save" method="POST" enctype="multipart/form-data">
  2. Title *<br /><input required class="cooltext" type="text" name="title" placeholder="Iowa Man Destroys Moon" value="<: $post.title :>" />
  3. URL *<br /><input required class="cooltext" type="text" name="local_href" placeholder="/someurl" value="<: $post.local_href :>" />
  4. ACL name *<br /><input required class="cooltext" type="text" name="aclname" value="<: $post.aclname :>" />
  5. Input Form *<br />
  6. <select required class="cooltext" name="child_form">
  7. : for $forms -> $form {
  8. <option value="<: $form :>" <: if ( $post.child_form == $form ) { :>selected<: } :> ><: $form :></option>
  9. : }
  10. </select>
  11. <input type="hidden" name="callback" value="Trog::Routes::HTML::series" />
  12. : include "preview.tx";
  13. : include "acls.tx";
  14. : include "tags.tx";
  15. : include "form_common.tx";
  16. </form>