tailbone/tailbone/templates/generated-projects/create.mako
Lance Edgar 2ed63b1c1a Massive overhaul of "generate project" feature
previous incarnation was woefully lacking.  new feature is much more
extensible.  still need to remove old POS integration specifics in
some places.

and a couple of unrelated things that snuck in..

- deprecate `rattail.util.OrderedDict`
- deprecate `rattail.util.import_module_path()`
- deprecate `rattail.util.import_reload()`
2023-05-05 00:18:16 -05:00

24 lines
582 B
Mako

## -*- coding: utf-8; -*-
<%inherit file="/master/create.mako" />
<%def name="title()">${index_title}</%def>
<%def name="content_title()"></%def>
<%def name="page_content()">
% if project_type:
<b-field grouped>
<b-field horizontal expanded label="Project Type">
${project_type}
</b-field>
<once-button type="is-primary"
tag="a" href="${url('generated_projects.create')}"
text="Start Over">
</once-button>
</b-field>
% endif
${parent.page_content()}
</%def>
${parent.body()}