Skip to content

Commit

Permalink
Fix layout of datetime attribute page.
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-ide committed Dec 15, 2023
1 parent 54d2b3e commit 77b28f3
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions webapp/views/data_tables/templates/attribute_datetime.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,24 +33,6 @@ <h2>DateTime Column</h2>
<h5>Enter a dateTime format string (e.g. YYYY-MM-DD):</h5>
{{ macros.item_start() }}{{ wtf.form_field(form.format_string) }}{{ macros.item_end(help_attribute_datetime_format_btn) }}
{{ macros.item_start() }}{{ wtf.form_field(form.datetime_precision) }}{{ macros.item_end(help_attribute_datetime_precision_btn) }}
<label class="control-label">Bounds (Optional):</label>
<table style="border: 1px solid steelblue;border-collapse: collapse;padding: 10px 20px;" width="100%">
<tr>
<td style="border: 1px solid steelblue;border-collapse: collapse;padding: 15px 20px 1px;">
<table width="100%">
<tr>
<td width="48%">{{ wtf.form_field(form.bounds_minimum) }}</td>
<td width="4%">&nbsp;</td>
<td width="48%" style="padding-bottom: 5px;">{{ wtf.form_field(form.bounds_minimum_exclusive) }}</td>
</tr>
<tr>
<td width="48%">{{ wtf.form_field(form.bounds_maximum) }}</td>
<td width="4%">&nbsp;</td>
<td width="48%" style="padding-bottom: 5px;">{{ wtf.form_field(form.bounds_maximum_exclusive) }}</td>
</tr>
</table></td>
</tr>
</table>
<label class="control-label">Optionally, enter up to 3 missing value codes with accompanying explanations:</label>
<table style="border: 1px solid steelblue;border-collapse: collapse;padding: 10px 20px;" width="100%">
<tr>
Expand All @@ -75,6 +57,24 @@ <h5>Enter a dateTime format string (e.g. YYYY-MM-DD):</h5>
</tr>
</table>
<br>
<label class="control-label">Bounds (Optional):</label>
<table style="border: 1px solid steelblue;border-collapse: collapse;padding: 10px 20px;" width="100%">
<tr>
<td style="border: 1px solid steelblue;border-collapse: collapse;padding: 15px 20px 1px;">
<table width="100%">
<tr>
<td width="48%">{{ wtf.form_field(form.bounds_minimum) }}</td>
<td width="4%">&nbsp;</td>
<td width="48%" style="padding-bottom: 5px;">{{ wtf.form_field(form.bounds_minimum_exclusive) }}</td>
</tr>
<tr>
<td width="48%">{{ wtf.form_field(form.bounds_maximum) }}</td>
<td width="4%">&nbsp;</td>
<td width="48%" style="padding-bottom: 5px;">{{ wtf.form_field(form.bounds_maximum_exclusive) }}</td>
</tr>
</table></td>
</tr>
</table>
<br>
<table style="border: 1px solid steelblue;border-collapse: collapse;padding: 10px 20px;" width="100%">
<tr>
Expand Down

0 comments on commit 77b28f3

Please sign in to comment.