source: OpenWorkouts-current/ow/templates/add_workout.pt @ 5ec3a0b

currentfeature/docs
Last change on this file since 5ec3a0b was 5ec3a0b, checked in by borja <borja@…>, 5 years ago

Imported sources from the old python2-only repository:

  • Modified the code so it is python 3.6 compatible
  • Fixed deprecation warnings, pyramid 1.10.x supported now
  • Fixed deprecation warnings about some libraries, like pyramid-simpleform
  • Added pytest-pycodestyle and pytest-flakes for automatic checks on the source code files when running tests.
  • Added default pytest.ini setup to enforce some default parameters when running tests.
  • Cleaned up the code a bit, catched up with tests coverage.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1<html xmlns="http://www.w3.org/1999/xhtml"
2      xml:lang="en"
3      xmlns:tal="http://xml.zope.org/namespaces/tal"
4      xmlns:metal="http://xml.zope.org/namespaces/metal"
5      xmlns:i18n="http://xml.zope.org/namespaces/i18n"
6      i18n:domain="OpenWorkouts"
7      metal:use-macro="load: base.pt"
8      tal:attributes="lang request.locale_name">
9
10  <metal:head-title metal:fill-slot="head-title">
11    <tal:t i18n:translate="">Add workout</tal:t>
12  </metal:head-title>
13
14  <metal:title metal:fill-slot="title">
15    <tal:t i18n:translate="">Add workout</tal:t>
16  </metal:title>
17
18  <metal:content metal:fill-slot="content">
19    <div id="add_workout">
20      ${form.begin(multipart=True)}
21      ${form.csrf_token()}
22
23      <fieldset>
24        ${form.errorlist('title')}
25        <label for="title" i18n:translate="">Title:</label>
26        ${form.text('title')}
27      </fieldset>
28
29      <fieldset>
30        ${form.errorlist('notes')}
31        <label for="notes" i18n:translate="">Notes:</label>
32        ${form.textarea('notes', rows=10, cols=50)}
33      </fieldset>
34
35      <fieldset>
36        ${form.errorlist('tracking_file')}
37        <label for="tracking_file" i18n:translate="">
38          Workout file (gpx, fit):</label>
39        ${form.file('tracking_file')}
40      </fieldset>
41
42      ${form.submit("submit", "Save")}
43      <a href="" tal:attributes="href request.resource_url(request.root)"
44         i18n:translate="">Cancel</a>
45
46      ${form.end()}
47    </div>
48
49  </metal:content>
50
51</html>
Note: See TracBrowser for help on using the repository browser.