diff --git a/tailbone/static/css/forms.css b/tailbone/static/css/forms.css index f1e3ee03..42364b14 100644 --- a/tailbone/static/css/forms.css +++ b/tailbone/static/css/forms.css @@ -8,23 +8,6 @@ div.form-wrapper { } -/****************************** - * "object helper" panel - ******************************/ - -.object-helper { - border: 1px solid black; - float: right; - margin-top: 1em; - padding: 1em; - width: 20em; -} - -.object-helper-content { - margin-top: 1em; -} - - /****************************** * Forms ******************************/ diff --git a/tailbone/static/css/layout.css b/tailbone/static/css/layout.css index 60a32df7..cedd4d55 100644 --- a/tailbone/static/css/layout.css +++ b/tailbone/static/css/layout.css @@ -151,6 +151,20 @@ body > #body-wrapper { white-space: nowrap; } +/****************************** + * "object helper" panel + ******************************/ + +.object-helper { + border: 1px solid black; + margin: 1em; + padding: 1em; + width: 20em; +} + +.object-helper-content { + margin-top: 1em; +} /****************************** * Panels diff --git a/tailbone/static/themes/bobcat/css/layout.css b/tailbone/static/themes/bobcat/css/layout.css index 4d8d5c36..ccc0607a 100644 --- a/tailbone/static/themes/bobcat/css/layout.css +++ b/tailbone/static/themes/bobcat/css/layout.css @@ -124,6 +124,20 @@ header .level .theme-picker { white-space: nowrap; } +/****************************** + * "object helper" panel + ******************************/ + +.object-helper { + border: 1px solid black; + margin: 1em; + padding: 1em; + width: 20em; +} + +.object-helper-content { + margin-top: 1em; +} /* /\****************************** */ /* * Panels */ diff --git a/tailbone/templates/batch/view.mako b/tailbone/templates/batch/view.mako index 34c6b406..ceaf9676 100644 --- a/tailbone/templates/batch/view.mako +++ b/tailbone/templates/batch/view.mako @@ -75,35 +75,43 @@ % endif - +
-% if status_breakdown is not Undefined and status_breakdown is not None: -
-

Row Status Breakdown

-
- % if status_breakdown: -
- - % for i, (status, count) in enumerate(status_breakdown): - - - - - % endfor -
${status}${count}
-
- % else: -

Nothing to report yet.

- % endif -
-
-% endif +
+ ${form.render(form_id='batch-form', buttons=capture(buttons))|n} +
-
- ${form.render(form_id='batch-form', buttons=capture(buttons))|n} -
+
+ + % if status_breakdown is not Undefined and status_breakdown is not None: +
+

Row Status Breakdown

+
+ % if status_breakdown: +
+ + % for i, (status, count) in enumerate(status_breakdown): + + + + + % endfor +
${status}${count}
+
+ % else: +

Nothing to report yet.

+ % endif +
+
+ % endif + + + +
+ +
${rows_grid|n}