decided to move the save / comp buttons to under the summary, just looks better

This commit is contained in:
2025-02-20 16:09:02 +11:00
parent f52a6ef033
commit 5fabec0125

View File

@@ -130,20 +130,20 @@
</div> </div>
{% endfor %} {% endfor %}
</div> </div>
</div> <div id="comp_col" class="col-auto">
<div id="comp_col" class="col-auto"> <div class="input-group">
<div class="input-group"> <button type="button" class="btn btn-primary me-2 rounded" data-bs-toggle="modal" data-bs-target="#save_modal">Save</button>
<button type="button" class="btn btn-primary me-2 rounded" data-bs-toggle="modal" data-bs-target="#save_modal">Save</button> <button type="submit" class="disabled btn btn-primary rounded-start" onClick="$('#vals_form').submit() disabled">Compare to:</button>
<button type="submit" class="disabled btn btn-primary rounded-start" onClick="$('#vals_form').submit() disabled">Compare to:</button> <select class="form-select border border-primary text-primary" id="compare_to" name="compare_to" onchange="$('#vals_form').submit()">
<select class="form-select border border-primary text-primary" id="compare_to" name="compare_to" onchange="$('#vals_form').submit()"> {% for el in finance['COMP_SETS'] %}
{% for el in finance['COMP_SETS'] %} <option value="{{el[0]}}">{{el[1]}}</option>
<option value="{{el[0]}}">{{el[1]}}</option> {% endfor %}
{% endfor %} </select>
</select> </div>
</div> {% if COMP %}
{% if COMP %} <div style="display:none" id="comp_alert" class="alert alert-info mt-2">Note: {{ '$%0.2f' % COMP['amount']|float }} is the final value of the compared to data. Hover over blue labels above to see what compared to values differed</div>
<div style="display:none" id="comp_alert" class="alert alert-info mt-2">Note: {{ '$%0.2f' % COMP['amount']|float }} is the final value of the compared to data. Hover over blue labels above to see what compared to values differed</div> {% endif %}
{% endif %} </div>
</div> </div>
</div> </div>
</form> </form>