<%inherit file="/template.html" /> <%namespace name="tiles_html" file="/proposal/tiles.html"/> <%namespace name="components" file="/components.html"/> <%namespace name="forms" file="/forms.html"/> <%namespace name="badge_tiles" file="/badge/tiles.html"/> <%def name="title()">${_("Edit %s") % c.proposal.title|n} <%def name="breadcrumbs()"> ${h.proposal.breadcrumbs(c.proposal)|n} » ${_("Edit")} <%block name="main_content">

${_(u'Edit “%s”') % c.proposal.title|n}


${h.field_token()|n}
${_("Amendment title") if c.proposal.is_amendment else _("Proposal title")}
${_("Reasoning") if c.proposal.is_amendment else _("Proposal goals")}

%if c.proposal.is_amendment: ${_("Give a brief explanation of the idea behind your amendment.")} %else: ${_("Give a brief description of the goals of your proposal.")|n} %endif

${components.formatting()}
%if not h.config.get_bool('adhocracy.proposal.split_badge_edit'): %if can.proposal.edit_badges(c.proposal) and not c.proposal.is_amendment:
${_("Badges")} %if c.badges:
    %for badge in c.badges:
  • %endfor
%else:

${_(u"No Badges")}

%endif
${_(u"Status Badge")} %if c.thumbnailbadges:
  • %for badge in c.thumbnailbadges:
  • %endfor
%else:

${_(u"No Status Badges")}

%endif
%endif %endif %if not c.proposal.is_amendment: %if c.instance.milestones:
${_("Relates to a milestone")} ${tiles.milestone.select(c.proposal.milestone)}
%endif %if c.categories: ${components.category_select('category_select', c.toplevel_question, c.categories)} %endif %endif
${_('Collaboration and Notification')} %if c.can_edit_wiki:
%endif %if h.has_permission('proposal.freeze'): ${forms.checkbox(_(u"Freeze proposal"), 'frozen')} %endif
${components.form_watch(c.proposal)}
${components.savebox(h.entity_url(c.proposal, in_overlay=False))}