Skip to content

Commit

Permalink
Fix inline styles in forms
Browse files Browse the repository at this point in the history
  • Loading branch information
tomodwyer committed Sep 6, 2024
1 parent 3f8d676 commit 86adc55
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions airlock/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,13 @@ class GroupEditForm(forms.Form):
help_text=mark_safe(
"""
<div class="c2-help">
Please describe the contents of these outputs to help reviewers. This includes:
<ul style="margin-top: 0;">
<li>Variable descriptions</li>
<li>A description and count of the underlying population for each output if it is not included in the output.</li>
<li>Specify population size and degrees of freedom for all regression outputs.</li>
<li>Relationship to other data/tables which through combination may introduce secondary disclosive risks.</li>
</ul>
<p>Please describe the contents of these outputs to help reviewers. This includes:</p>
<ul>
<li>Variable descriptions</li>
<li>A description and count of the underlying population for each output if it is not included in the output.</li>
<li>Specify population size and degrees of freedom for all regression outputs.</li>
<li>Relationship to other data/tables which through combination may introduce secondary disclosive risks.</li>
</ul>
</div>
"""
),
Expand All @@ -146,11 +146,11 @@ class GroupEditForm(forms.Form):
help_text=mark_safe(
"""
<div class="c2-help">
Please describe the statistical disclosure controls you have applied to these outputs. This includes:
<ul>
<li>The threshold used for low number suppression.</li>
<li>The rounding approach used.</li>
</ul>
<p>Please describe the statistical disclosure controls you have applied to these outputs. This includes:</p>
<ul>
<li>The threshold used for low number suppression.</li>
<li>The rounding approach used.</li>
</ul>
</div>
"""
),
Expand Down

0 comments on commit 86adc55

Please sign in to comment.