Files @ c617f60486c2
Branch filter:

Location: kallithea/kallithea/templates/files/files_delete.html

Mads Kiilerich
templates: update copyright notice in footer to 2017
<%inherit file="/base/base.html"/>

<%block name="title">
    ${_('%s Files Delete') % c.repo_name}
</%block>

<%block name="header_menu">
    ${self.menu('repositories')}
</%block>

<%def name="breadcrumbs_links()">
    ${_('Delete file')} @ ${h.show_id(c.cs)}
</%def>

<%def name="main()">
${self.repo_context_bar('files')}
<div class="panel panel-primary">
    <!-- box / title -->
    <div class="panel-heading clearfix">
        ${self.breadcrumbs()}
        <ul class="links">
            <li>
              <span><a href="#">${_('Branch')}: ${c.cs.branch}</a></span>
            </li>
        </ul>
    </div>
    <div class="table" id="edit">
        <div id="files_data">
            ${h.form(h.url.current(),method='post',class_="form-horizontal")}
            <h3 class="files_location">
                ${_('Delete file')}: ${h.files_breadcrumbs(c.repo_name,c.cs.raw_id,c.f_path)}
            </h3>

            <div id="body" class="codeblock">
                <div id="editor_container">
                    <pre id="editor_pre"></pre>
                    <textarea class="form-control" id="editor" name="content" style="display:none"></textarea>
                </div>
                <div style="padding: 10px;color:#666666">${_('Commit Message')}</div>
                <textarea id="commit" name="message" style="height: 100px;width: 99%;margin-left:4px" placeholder="${c.default_message}"></textarea>
            </div>
            <div style="text-align: left;padding-top: 5px">
                ${h.submit('commit',_('Commit Changes'),class_="btn btn-success btn-sm")}
                ${h.reset('reset',_('Reset'),class_="btn btn-default btn-sm")}
            </div>
            ${h.end_form()}
        </div>
    </div>
</div>
</%def>