## -*- coding: utf-8 -*- <%inherit file="base.mako"/> <%def name="subject()" filter="n,trim,whitespace_filter"> RhodeCode new user registration: ${user.username} <%def name="body_plaintext()" filter="n,trim"> A new user `${user.username}` has registered on ${h.format_date(date)} - Username: ${user.username} - Full Name: ${user.first_name} ${user.last_name} - Email: ${user.email} - Profile link: ${h.route_url('user_profile', username=user.username)} ${self.plaintext_footer()} ## BODY GOES BELOW

${_('New user %(user)s has registered on %(date)s') % {'user': user.username, 'date': h.format_date(date)}}

${_('Username')} ${user.username}
${_('Full Name')}${user.first_name} ${user.last_name}
${_('Email')}${user.email}
${_('Profile')}${h.route_url('user_profile', username=user.username)}