Skip to content

Commit c0b237e

Browse files
committed
Fix lint complaint
1 parent 8ec1b28 commit c0b237e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/olympia/devhub/templates/devhub/includes/agreement.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
<form method="post">
22
{% if not agreement_form.has_error('__all__') %}
33
<p>
4-
{{ _('Before starting, please read and accept our <a href="{{ url("devhub.docs", "policies/agreement") }}" target="_blank" rel="noopener noreferrer">Firefox Add-on Distribution Agreement</a> as well as our <a href="{{ url("devhub.docs", "policies") }}" target="_blank" rel="noopener noreferrer">Review Policies and Rules</a>, and our <a href="{{ url("devhub.docs", "policies/faq") }}" target="_blank" rel="noopener noreferrer">FAQ</a>. The Firefox Add-on Distribution Agreement also links to our Privacy Notice which explains how we handle your information.')|format_html(
4+
{{ _('Before starting, please read and accept our <a href="{agreement_url}" target="_blank" rel="noopener noreferrer">Firefox Add-on Distribution Agreement</a> as well as our <a href="{policies_url}" target="_blank" rel="noopener noreferrer">Review Policies and Rules</a>, and our <a href="{faq_url}" target="_blank" rel="noopener noreferrer">FAQ</a>. The Firefox Add-on Distribution Agreement also links to our Privacy Notice which explains how we handle your information.')|format_html(
5+
agreement_url=url('devhub.docs', 'policies/agreement'),
6+
policies_url=url('devhub.docs', 'policies'),
7+
faq_url=url('devhub.docs', 'policies/faq'),
58
) }}
69
</p>
710
<ul class="agreement-links">

0 commit comments

Comments
 (0)