Changeset c6219ed in OpenWorkouts-current for ow/templates/workout.pt


Ignore:
Timestamp:
Jan 22, 2019, 12:21:51 AM (5 years ago)
Author:
Borja Lopez <borja@…>
Branches:
current, feature/docs, master
Children:
26220ba, 2d2eb0d
Parents:
02048a6 (diff), be40b02 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merged patches from darcs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ow/templates/workout.pt

    r02048a6 rc6219ed  
    8787          <tal:c tal:content="context.rounded_distance"></tal:c> km
    8888        </li>
     89        <li tal:condition="context.speed">
     90          <tal:t i18n:translate="">Speed:</tal:t>
     91          <tal:t i18n:translate="">Avg.</tal:t>
     92          <tal:c tal:content="round(context.speed['avg'], 1)"></tal:c> km/h |
     93          <tal:t i18n:translate="">Max.</tal:t>
     94          <tal:c tal:content="round(context.speed['max'], 1)"></tal:c> km/h
     95        </li>
    8996        <li tal:condition="hr">
    9097          <tal:t i18n:translate="">Heart Rate:</tal:t>
     
    145152    <script type="text/javascript" tal:condition="context.has_gpx">
    146153     var workout_map = owjs.map({
     154         map_id: 'map',
    147155         latitude: ${start_point['latitude']},
    148156         longitude: ${start_point['longitude']},
     
    152160         end_icon: '${request.static_url('ow:static/components/leaflet-gpx/pin-icon-end.png')}',
    153161         shadow: '${request.static_url('ow:static/components/leaflet-gpx/pin-shadow.png')}',
     162         elevation: true,
     163         zoom_control: true
    154164     });
    155165     workout_map.render();
Note: See TracChangeset for help on using the changeset viewer.