Skip to content

Commit

Permalink
Moved changes to lca2016 theme folder until all templates are convert…
Browse files Browse the repository at this point in the history
…ed to bootstrap
  • Loading branch information
dtbell91 committed May 20, 2015
1 parent 13d90eb commit 82d31fa
Show file tree
Hide file tree
Showing 47 changed files with 1,429 additions and 33 deletions.
10 changes: 5 additions & 5 deletions zkpylons/templates/admin/lookup.mako
Expand Up @@ -13,7 +13,7 @@ ${ c.error }

% elif c.many:
<p>Looked up: ${ c.query } and found ${ len(c.many) }</p>
<table class="table sortable">
<table>
% for person in c.many:
<tr class="${ h.cycle("odd", "even") }">
<td>${ h.link_to(person.fullname, h.url_for(p=person.id)) }</td>
Expand Down Expand Up @@ -51,7 +51,7 @@ ${ c.error }
<div style="float: right">
${ h.form(h.url_for(controller='rego_note', action='new', id=None), method='post') }
${ h.hidden('rego_note.rego', value=c.person.registration.id) }
<table class="table sortable">
<table>
<tr>
<th>when</td>
<th>note</td>
Expand Down Expand Up @@ -90,7 +90,7 @@ not registered
<h2>Invoices</h2>
<p>${ h.link_to('New Manual Invoice', h.url_for(controller='invoice', action='new', id=None, person_id=c.person.id))}</p>
% if c.person.invoices:
<table class="table sortable">
<table>
<tr>
<th>Invoice #</th>
<th>Total</th>
Expand All @@ -105,7 +105,7 @@ not registered
% endfor
</table>
<br />
<table class="table sortable">
<table>
<tr>
<th>Invoice</td>
<th>Description</td>
Expand Down Expand Up @@ -134,7 +134,7 @@ not registered
</table>
% if c.person.fulfilments:
<h2>Fulfilments</h2>
<table class="table sortable">
<table>
<tr>
<th>Fulfilment</th>
<th>Product</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/admin/rego_list.mako
@@ -1,6 +1,6 @@
<%inherit file="/base.mako" />

<table class="table sortable">
<table>
<tr>
<th>Name</th>
<th>&nbsp;</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/admin/sqltable.mako
Expand Up @@ -10,7 +10,7 @@ oddeven = oddeven()
<h1>${ h.url_for().split('/')[-1].replace('_', ' ').title() }</h1>
<p><a href="?csv=true">Export as CSV</a></p>

<table class="table sortable">
<table border="1">
<tr>
% for header in c.columns:
<th>${ header }</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/admin/table.mako
Expand Up @@ -10,7 +10,7 @@
<a href="?latex=true">Export as LaTeX table</a>
</p>

<table class="table sortable">
<table>
<tr>
% for header in c.columns:
<th>${ header }</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/admin/table_fragment.mako
Expand Up @@ -3,7 +3,7 @@
%>

<p> ${ c.text | n } </p>
<table class="table table-bordered">
<table>
<tr>
% for header in c.columns:
<th>${ header }</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/ceiling/list.mako
Expand Up @@ -3,7 +3,7 @@
<h2>List ceilings</h2>

% if len(c.ceiling_collection) > 0:
<table class="table sortable">
<table>
<tr>
<th>Name</th>
<th>Parent</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/db_content/list.mako
@@ -1,7 +1,7 @@
<%inherit file="/base.mako" />
<h2>List of DB pages</h2>

<table class="table">
<table>
<tr>
<th>ID/Edit</th>
<th>Title</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/db_content/list_files.mako
Expand Up @@ -8,7 +8,7 @@ no_theme = 'true' if c.no_theme else 'false'

<h3>Current folder: ${ c.current_path }</h3>

<table class="table">
<table>
<tr>
<th>Icon/type</th>
<th>Path</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/funding/approve.mako
Expand Up @@ -3,7 +3,7 @@
<h2>Approve/disapprove funding</h2>

${ h.form(h.url_for()) }
<table class="table sortable">
<table>
<tr>
<th>#</th>
<th>Name</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/funding_type/list.mako
Expand Up @@ -2,7 +2,7 @@

<h2>List funding types</h2>

<table class="table sortable">
<table>

% if len(c.funding_type_collection) > 0:
<tr>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/invoice/list.mako
Expand Up @@ -4,7 +4,7 @@
<p>${ h.link_to('Create new (manual) Invoice', h.url_for(action='new')) }</p>
% endif
<p style="font-size: smaller;">Unvoiding invoices marks them as manual.</p>
<table class="table sortable">
<table>
<tr>
<th>rego</th>
<th>invoice</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/invoice/remind.mako
Expand Up @@ -8,7 +8,7 @@ ${ h.form(h.url_for()) }
<%include file="remind_email.mako" />
</pre>

<table class="table sortable">
<table>
<tr>
<th>Remind</th>
<th>Name</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/person/list.mako
@@ -1,7 +1,7 @@
<%inherit file="/base.mako" />

<h2>People</h2>
<table class="table sortable">
<table>

% if len(c.person_collection) > 0:
<tr>
Expand Down
8 changes: 1 addition & 7 deletions zkpylons/templates/person/roles.mako
Expand Up @@ -9,13 +9,7 @@

<p><b> ${ c.person.firstname } ${ c.person.lastname } </b></p>
<br>
<table class="table sortable">
<tr>
<th>Is/Is not</th>
<th>Role</th>
<th>Grant/Revoke</th>
<th>Description</th>
</tr>
<table>
% for role in c.roles:
<tr class="${ h.cycle('even', 'odd') }">
<td valign="middle">
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/product_category/list.mako
Expand Up @@ -3,7 +3,7 @@
<h2>List of categories</h2>

% if len(c.product_category_collection) > 0:
<table class="table sortable">
<table>
<tr>
<th>Name</th>
<th>Description</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/proposal/approve.mako
Expand Up @@ -3,7 +3,7 @@
<h2>Approve/disapprove talks</h2>

${ h.form(h.url_for()) }
<table class="table sortable">
<table>
<tr>
<th>#</th>
<th>Title</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/proposal_type/list.mako
Expand Up @@ -2,7 +2,7 @@

<h2>List proposal types</h2>

<table class="table sortable">
<table>

% if len(c.proposal_type_collection) > 0:
<tr>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/registration/list.mako
Expand Up @@ -150,7 +150,7 @@ if "not_australian" in c.registration_request and c.registration_request['not_au

<p>${ h.link_to('Export as CSV', url=attribs + "&export=true") }</p>

<table class="table sortable">
<table>
<thead><tr>
<th>Rego</th>
<th>Name / Email</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/rego_note/list.mako
Expand Up @@ -2,7 +2,7 @@

<h2>List of Registration Notes</h2>

<table class="table sortable">
<table>
<tr>
<th>ID/Edit</th>
<th>For person</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/role/list.mako
Expand Up @@ -2,7 +2,7 @@

<h1>List roles</h1>

<table class="table sortable">
<table>

% if len(c.role_collection) > 0:
<tr>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/social_network/list.mako
Expand Up @@ -3,7 +3,7 @@
<h2>List of Social Networks</h2>

% if len(c.social_networks) > 0:
<table class="table sortable">
<table>
<tr>
<th>Name</th>
<th>Image</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/volunteer/list.mako
Expand Up @@ -3,7 +3,7 @@
<h2>List of Volunteers</h2>
% if len(c.volunteer_collection) > 0:

<table class="table sortable">
<table>
<thead>
<tr>
<th>Volunteer</th>
Expand Down
2 changes: 1 addition & 1 deletion zkpylons/templates/voucher/list.mako
Expand Up @@ -11,7 +11,7 @@
% endif
% endif

<table class="table sortable">
<table>
<tr>
<th>Code</th>
<th>Products</th>
Expand Down
File renamed without changes.

0 comments on commit 82d31fa

Please sign in to comment.