We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6ad058 commit 0b6bb20Copy full SHA for 0b6bb20
1 file changed
app/rooms/templates/error.html
@@ -5,13 +5,16 @@
5
6
<div class="container" style="margin-top: 40px; margin-left: 300px">
7
8
-<h2>Problem: an error occurred</h2>
9
-<p>Error information:</p>
+<h2>Error</h2>
10
11
-{% if error_code %}
12
- <p>{{ error_code }}: {{ error_message }}</p>
+{% if error_code == 'FORMS_INTEGRATION_NOT_ENABLED' %}
+ <p>{{ error_code }}: Please contact your DocuSign Account Manager or Business Development representative to enable Forms for this account.</p>
13
{% else %}
14
- <p><pre>{{ err }}</pre></p>
+ {% if error_code %}
+ <p>{{ error_code }}: {{ error_message }}</p>
15
+ {% else %}
16
+ <p><pre>{{ err }}</pre></p>
17
+ {% endif %}
18
{% endif %}
19
20
0 commit comments