diff --git a/pylons_app/templates/index.html b/pylons_app/templates/index.html --- a/pylons_app/templates/index.html +++ b/pylons_app/templates/index.html @@ -1,161 +1,47 @@ - ## -*- coding: utf-8 -*- -<%inherit file = "base/base.html"/> - -<%def name="page_title()"> - ${_('Wire transfer')} - - -<%def name="body()"> - - - - - - -
- - - -
- -

Hello we are Luminous

-

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do -eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad -minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip -ex ea commodo consequat.


- -

What we do

- -
- - - -
-

Design

-

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do -eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad -minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip -ex ea. More »

-
- -
+## -*- coding: utf-8 -*- -
- - - -
-

Development

-

${h.secure_form('/home/make_payment',method='post',id="secure_form")} - ##Secure Form Tag for prevention of Cross-site request forgery (CSRF) attacks. - ##Generates form tags that include client-specific authorization tokens to be verified by the destined web app. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
${h.get_error('_authentication_token',c.form_errors)}
${_('Account number')}${h.text('account_number',size=44,maxlength=38)}${h.get_error('account_number',c.form_errors)}
${_('Title')}${h.textarea("title", "", cols=43, rows=5,maxlength=20)}${h.get_error('title',c.form_errors)}
${_('Recipient')}${h.select('recipient',1,c.recipients_list)}${h.get_error('recipient',c.form_errors)}
${_('Recipient address')}${h.text('recipient_address',size=44)}${h.get_error('recipient_address',c.form_errors)}
${_('Amount')}${h.text('amount',size='7')}zł${h.get_error('amount',c.form_errors)}
${h.submit('send',_('send'))}
- ${h.end_form()}More »

-
- -
- -
- - - -
-

Marketing

-

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do -eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad -minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip -ex ea. More »

-
- -
- -
- -
- +<%inherit file="base/base.html"/> +<%def name="title()"> + ${c.repos_prefix} Mercurial Repositories + +<%def name="breadcrumbs()"> +

${c.repos_prefix} Mercurial Repositories

+ +<%def name="page_nav()"> +
  • ${_('Home')}
  • +
  • ${h.link_to(u'Admin',h.url('admin_home'))}
  • - -<%def name="footer()"> - - - - +<%def name="main()"> + <%def name="get_sort(name)"> + ${name} + + + + + + + + + + %for cnt,repo in enumerate(c.repos_list): + + + + + + + + + + %endfor +
    ${get_sort(_('Name'))}${get_sort(_('Description'))}${get_sort(_('Last change'))}${get_sort(_('Tip'))}${get_sort(_('Contact'))}
    ${repo['name']}${repo['desc']}${repo['last_change']}r${repo['rev']}:${repo['tip']}${repo['contact']} + +
    +