Compare commits

..

No commits in common. "18ce2b539937413f4a3803a9cba4f4f6147e9c49" and "030dc33d551b992846a936444c18c5331c040860" have entirely different histories.

11 changed files with 14 additions and 32 deletions

View File

@ -16,10 +16,7 @@ def success():
@app.route('/', methods=['GET', 'POST'])
def main_page():
client = InfluxDBClient('localhost', 8086, 'root', 'root', 'gas')
query = 'select TOP(odometer, 5) from odyssey'
data = client.query(query)
return render_template('index.html', data=data)
return render_template('index.html')
@app.route('/add_time', methods=['POST', 'GET'])
def add_time():
@ -35,8 +32,6 @@ def add_time():
time = now
odometer = request.form['odometer']
oilhealth= request.form['oilhealth']
if oilhealth != '':
oilhealth = float(oilhealth)
fuel = request.form['fuel']
if fuel != '':
fuel = float(fuel)
@ -44,10 +39,6 @@ def add_time():
if fuelcost != '':
fuelcost = float(fuelcost)
winter = request.form['winter']
if winter == 'TRUE':
winter = True
else:
winter = False
json_body = [
{
@ -58,7 +49,7 @@ def add_time():
"oilhealth": oilhealth,
"fuel": fuel,
"fuelcost": fuelcost,
"winter": winter
"winter": bool(winter)
}
}
]

View File

Before

Width:  |  Height:  |  Size: 344 B

After

Width:  |  Height:  |  Size: 344 B

View File

Before

Width:  |  Height:  |  Size: 220 B

After

Width:  |  Height:  |  Size: 220 B

View File

Before

Width:  |  Height:  |  Size: 378 B

After

Width:  |  Height:  |  Size: 378 B

View File

View File

View File

View File

View File

View File

View File

@ -17,54 +17,45 @@
<div class="row">
<div class="col-xs-4">
<label for="date">Date:</label>
<input type=date name="date" class="form-control" placeholder="Ex: 2009-11-10">
<input type=text name="date" class="form-control" placeholder="Ex: 2009-11-10">
</div>
<div class="col-xs-4">
<label for="time">Time:</label>
<input type=time name="time" class="form-control" placeholder="Ex: 17:59:03">
<input type=text name="time" class="form-control" placeholder="Ex: 17:59:03">
</div>
</div>
<div class="row">
<div class="col-xs-4">
<label for="odometer">Odometer:</label>
<input type=number name="odometer" class="form-control" placeholder="Ex: 3008">
<input type=text name="odometer" class="form-control" placeholder="Ex: 3008">
</div>
<div class="col-xs-4">
<label for="oilhealth">Oil Health:</label>
<input type=number name="oilhealth" class="form-control" placeholder="Ex: 80">
<input type=text name="oilhealth" class="form-control" placeholder="Ex: 80">
</div>
</div>
<div class="row">
<div class="col-xs-4">
<label for="fuel">Fuel (L):</label>
<input type=number step="0.001" name="fuel" class="form-control" placeholder="Ex: 70.175">
<input type=text name="fuel" class="form-control" placeholder="Ex: 70.175">
</div>
<div class="col-xs-4">
<label for="fuelcost">Fuel Cost ($/L):</label>
<input type=number step="0.001" name="fuelcost" class="form-control" placeholder="Ex: 1.059">
<input type=text name="fuelcost" class="form-control" placeholder="Ex: 1.059">
</div>
</div>
<div class="row">
<div class="col-xs-4">
<label for="winter">Winter Tires:</label>
<select name="winter" class="form-control" default="false">
<option value="TRUE">True</option>
<option value="FALSE" selected>False</option>
<select name="winter" class="form-control">
<option value="true">True</option>
<option value="false">False</option>
</select>
</div>
</div><br>
</div>
<input type="submit" value="Go">
</div>
</form>
<br>
Last Mileage
<ul>
{% for point in data %}
{% for item in point %}
<li>
{{ item['top'] }}
</li>
{% endfor %}
{% endfor %}
{% endblock %}
</ul>