%inherit file="/base/index.html" />
<%namespace file="fields.html" name="fields" import="*"/>
<%def name="heading()">
Create a New Section
%def>
${h.form_start(h.url_for(controller='section', action='create'), method="post")}
${fields.body()}
${h.field(field=h.submit(value="Create Section", name='submit'))}
${h.form_end()}
<%namespace file="/derived/nav/fields.html" name="navfields" import="js"/>
<%def name="js()">
${parent.js()}
${navfields.js()}
%def>