Skip to content

Commit 489dfa0

Browse files
Edited titles on click1-5
1 parent 80f1c8a commit 489dfa0

11 files changed

Lines changed: 20 additions & 20 deletions

File tree

app/click/examples/eg001_create_clickwrap/views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def create_clickwrap():
4545
# 3. Render the response
4646
return render_template(
4747
"example_done.html",
48-
title="Creating a new clickwrap",
49-
h1="Creating a new clickwrap",
48+
title="Create a new clickwrap",
49+
h1="Create a new clickwrap",
5050
message=f"""The clickwrap "{args['clickwrap_name']}" has been created!""",
5151
json=json.dumps(json.dumps(results.to_dict(), default=str))
5252
)

app/click/examples/eg002_activate_clickwrap/views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ def activate_clickwrap():
4141
# 3. Render the response
4242
return render_template(
4343
"example_done.html",
44-
title="Activating a clickwrap",
45-
h1="Activating a clickwrap",
44+
title="Activate a clickwrap",
45+
h1="Activate a clickwrap",
4646
message=f"""The clickwrap "{args['clickwrap_name']}" has been activated!""",
4747
json=json.dumps(json.dumps(results.to_dict(), default=str))
4848
)

app/click/examples/eg003_create_new_clickwrap_version/views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ def create_new_clickwrap_version():
3939
# 3. Render the response
4040
return render_template(
4141
"example_done.html",
42-
title="Creating a new clickwrap version",
43-
h1="Creating a new clickwrap version",
42+
title="Create a new clickwrap version",
43+
h1="Create a new clickwrap version",
4444
message=f"""Version {results_dict['version_number']} of clickwrap "{results_dict['clickwrap_name']}" has been created.""",
4545
json=json.dumps(json.dumps(results_dict, default=str))
4646
)

app/click/examples/eg004_list_clickwraps/views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ def clickwrap_list():
3535
# 3. Render the response
3636
return render_template(
3737
"example_done.html",
38-
title="List clickwraps results",
39-
h1="List clickwraps results",
38+
title="Get a list of clickwraps",
39+
h1="Get a list of clickwraps",
4040
message="Results from the ClickWraps::getClickwraps method:",
4141
json=json.dumps(json.dumps(results.to_dict(), default=str))
4242
)

app/click/examples/eg005_clickwrap_responses/views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ def clickwrap_responses():
3535
# 3. Render the response
3636
return render_template(
3737
"example_done.html",
38-
title="Getting clickwrap responses",
39-
h1="Getting clickwrap responses",
38+
title="Get clickwrap responses",
39+
h1="Get clickwrap responses",
4040
message="Results from the ClickWraps::getClickwrapAgreements method:",
4141
json=json.dumps(json.dumps(results.to_dict(), default=str))
4242
)

app/click/templates/eg001_create_clickwrap.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div class="container" style="margin-top: 40px; margin-left: 300px">
44

5-
<h4>1. Creating a clickwrap</h4>
5+
<h4>1. Create a clickwrap</h4>
66
<p>Creates a clickwrap that you can embed in your website or app.</p>
77

88
{% include 'documentation.html' %}

app/click/templates/eg002_activate_clickwrap.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div class="container" style="margin-top: 40px; margin-left: 300px">
44

5-
<h4>2. Activating a clickwrap</h4>
5+
<h4>2. Activate a clickwrap</h4>
66
<p>Activates a new clickwrap that you have already created. By default, new clickwraps are <br>
77
inactive. You must activate your clickwrap before you can use it.</p>
88

app/click/templates/eg003_create_new_clickwrap_version.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div class="container" style="margin-top: 40px; margin-left: 300px">
44

5-
<h4>3. Creating a new clickwrap version</h4>
5+
<h4>3. Create a new clickwrap version</h4>
66
<p>
77
Creates a new version of a clickwrap.
88
</p>

app/click/templates/eg004_list_clickwraps.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div class="container" style="margin-top: 40px; margin-left: 300px">
44

5-
<h4>4. Getting a list of clickwraps</h4>
5+
<h4>4. Get a list of clickwraps</h4>
66
<p>Gets a list of clickwraps associated with a specific DocuSign user.</p>
77

88
{% include 'documentation.html' %}

app/click/templates/eg005_clickwrap_responses.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div class="container" style="margin-top: 40px; margin-left: 300px">
44

5-
<h4>5. Getting clickwrap responses</h4>
5+
<h4>5. Get clickwrap responses</h4>
66
<p>Gets user responses to your clickwrap agreements.</p>
77

88
{% include 'documentation.html' %}

0 commit comments

Comments
 (0)