generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new layout changes; rearanged panels and made measurements table scro…
…llable
- Loading branch information
tylersdejong
committed
Jan 31, 2024
1 parent
cb7c1e4
commit ed313de
Showing
11 changed files
with
154 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,18 +39,6 @@ | |
{% block content %} | ||
{% endblock %} | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
{% block footer %} | ||
{% endblock %} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
frontend/rctool/templates/rctool/rctool/develop/develop_table_measurents.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{% load static %} | ||
{% load custom_tags %} | ||
|
||
<!-- <div id="field" class="tabcontent"> | ||
<div class="card-body px-4 py-2" style="display: flex;"> | ||
<table class="table" id="fieldtable"> | ||
<tr class="table-header"> | ||
{% for header in table_dict.headings %} | ||
{% if forloop.counter0 != 5 %} | ||
<th class="table-cell">{{ header }}</th> | ||
{% endif %} | ||
{% endfor %} | ||
<th class="table-cell">use point</th> | ||
</tr> | ||
{% for row in table_dict.data %} | ||
<tr class="table-row"> | ||
{% for cell in row %} | ||
{% if forloop.counter0 != 5 %} | ||
<td class="table-cell">{{ cell }} </td> | ||
{% endif %} | ||
{% endfor %} | ||
<td><input type="checkbox" id="toggle_data_point" name="toggle_data_point" checked="checked" onchange="togglePoint('{{ forloop.counter0 }}', this.checked)"></td> | ||
</tr> | ||
{% endfor %} | ||
</table> | ||
</div> | ||
</div> --> | ||
|
||
<div id="field" class="tabcontent"> | ||
<div class="card-body px-4 py-2" style="display: flex;"> | ||
<div class="table-container"> | ||
<table class="table" id="fieldtable"> | ||
<thead> | ||
<tr class="table-header"> | ||
{% for header in table_dict.headings %} | ||
{% if forloop.counter0 != 5 %} | ||
<th class="table-cell">{{ header }}</th> | ||
{% endif %} | ||
{% endfor %} | ||
<th class="table-cell">use point</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{% for row in table_dict.data %} | ||
<tr class="table-row"> | ||
{% for cell in row %} | ||
{% if forloop.counter0 != 5 %} | ||
<td class="table-cell">{{ cell }} </td> | ||
{% endif %} | ||
{% endfor %} | ||
<td><input type="checkbox" id="toggle_data_point" name="toggle_data_point" checked="checked" onchange="togglePoint('{{ forloop.counter0 }}', this.checked)"></td> | ||
</tr> | ||
{% endfor %} | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.