Files @ 586f80f48113
Branch filter:

Location: kallithea/kallithea/templates/email_templates/main.html

domruf
hooks: rename hooks to reflect what they are doing

The names of our hooks should reflect what they are doing.
So, since pre_push and pre_pull only handle the locking, rename
pre_push->push_lock_handling and pre_pull->pull_lock_handling.

This imply a database migration step which must be run as described in the
upgrade documentation.

Also rename db.Ui class variables.
<!doctype html>
<html lang="en">
<head>
    <title></title>
    <meta name="viewport" content="width=device-width">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<table align="center" cellpadding="0" cellspacing="0" border="0" style="min-width:348px;max-width:800px;${default_style}">
    <tr>
        <td width="30px" style="width:30px"></td>
        <td>
            <table width="100%" cellpadding="0" cellspacing="0" border="0"
                   style="table-layout:fixed;${sans_style};border:1px solid ${color_border}">
                <tr><td width="30px" style="width:30px"></td><td></td><td width="30px" style="width:30px"></td></tr>
                <tr>
                    <td colspan="3">
<%block name="header"/>\
                    </td>
                </tr>
                <tr>
                    <td height="30px" style="height:30px" colspan="3"></td>
                </tr>
                <tr>
                    <td></td>
                    <td>
                        ##<!-- body -->
${self.body()}\
                        ##<!-- /body -->
                    </td>
                    <td></td>
                </tr>
                <tr>
                    <td height="30px" style="height:30px" colspan="3"></td>
                </tr>
            </table>
        </td>
        <td width="30px" style="width:30px"></td>
    </tr>
</table>
</body>
</html>