{% extends 'forgewiki:templates/wiki/master.html' %} {% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}} / {{page.title}}{% endblock %} {% block header %}Edit {{page.title}}{% endblock %} {% block extra_css %} {% endblock %} {% block actions %} {% if page_exists and h.has_access(page, 'delete')() %} {% endif %} {% endblock %} {% block wiki_content %}
{{c.markdown_editor.display(id='text', name='text',value=page.text)}}
{{c.label_edit.display(id='labels', name='labels', value=page.labels)}}
{{c.attachment_list.display(attachments=page.attachments, edit_mode=page_exists and h.has_access(page, 'edit')())}} {% if page_exists and h.has_access(page, 'edit')() %} {{c.attachment_add.display(action=page.url() + 'attach', name='file_info')}} {% endif %}
{% endblock %} {% block wiki_extra_js %} {% endblock %}