Trip Summary

Travel {{ costs | trip_travel_cost | dollars }}
Lodging {{ costs | trip_lodging_cost | dollars }}
MIE {{ costs | trip_mie_cost | dollars }}
Total {{ costs | trip_total_cost | dollars }}

Details

{% for leg in costs %}

Leg: {{ leg.route['start'] }} -- {{ leg.route['end'] }}

{% if leg.costs.travel_cost.found %}

Estimated Travel Cost

Using estimator {{ leg.costs.travel_cost['estimator'] }}

Of first {{ leg.costs.travel_cost['fares']|count }} fares, average cost was {{ leg.costs.travel_cost['fares']|mean|dollars }}

{% else %} Unable to determine cost for this leg. {% endif %}

Stay Location: {{ leg.staying_in }} ({{ leg.costs.matched_location }})

{% if leg.costs.matched_location is none %}

Warning!

Unfortunately, I was unable to look up Per Diem costs for this leg!

Try explicitly stating where you are staying by putting "staying in X" after your route, where X is your location in

City, Country
(or
City, State, USA
) form.

{% else %} {% for day in leg.costs.dates %} {% endfor %}
Date Lodging Lodging Mult Lodging Actual M&IE M&IE mult M&IE Actual
{{ day.day.strftime('%d %B %Y') }} {{ day.lodging | dollars }} {{ day.lodging_multiplier }} {{ day.lodging_actual | dollars }} {{ (day.meals+day.incidentals) | dollars }} {{ day.mie_multiplier }} {{ day.mie_actual | dollars }}
Total {{ leg | lodgingcost | dollars }} {{ leg | miecost | dollars }}
{% endif %} {% endfor %}