formatting fixes for on mobile
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<div class="col-xs-12">
|
||||||
<h2>Well Configuration</h2>
|
<h2>Well Configuration</h2>
|
||||||
@@ -106,9 +107,11 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$( "#add-row" ).click(function( event ) {
|
$( "#add-row" ).click(function( event ) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
var nextTaper = parseInt($(".taper-number").last().text()) + 1;
|
var nextTaper = parseInt($(".taper-number").last().text()) + 1;
|
||||||
@@ -167,5 +170,5 @@
|
|||||||
success: configUpdatedSuccessfully
|
success: configUpdatedSuccessfully
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|||||||
@@ -72,9 +72,9 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
function getCardData(){
|
function getCardData(){
|
||||||
$.ajax({
|
$.ajax({
|
||||||
dataType: 'json',
|
dataType: 'json',
|
||||||
@@ -88,5 +88,5 @@
|
|||||||
$('[data-toggle="popover"]').popover({html: true})
|
$('[data-toggle="popover"]').popover({html: true})
|
||||||
})
|
})
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|||||||
@@ -118,7 +118,7 @@
|
|||||||
function setRunStatus(data){
|
function setRunStatus(data){
|
||||||
$("#runstatus").text(data.runstatus.status);
|
$("#runstatus").text(data.runstatus.status);
|
||||||
$("#db-runstatus").text(data.runstatus.status);
|
$("#db-runstatus").text(data.runstatus.status);
|
||||||
var ts_date = new Date(Date.parse(data.runstatus.timestamp));
|
var ts_date = new Date(Date.parse(data.runstatus.timestamp.replace(" ", "T")));
|
||||||
$("#runstatustimestamp").text(ts_date.toString());
|
$("#runstatustimestamp").text(ts_date.toString());
|
||||||
$("#db-runstatustimestamp").text(ts_date.toString());
|
$("#db-runstatustimestamp").text(ts_date.toString());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user