fixing format

This commit is contained in:
asaki222 2024-09-17 17:50:27 -04:00
parent e8d36b9d94
commit 441095f952
No known key found for this signature in database
GPG key ID: 2C4F802060E06EA4
4 changed files with 1 additions and 5 deletions

View file

@ -1977,8 +1977,6 @@ class DomainRequestAdmin(ListHeaderAdmin, ImportExportModelAdmin):
so we should display that information using this function. so we should display that information using this function.
""" """
# TODO 2574: remove lines 1977-1978 (refactor as needed)
recipient = obj.creator recipient = obj.creator
# Displays a warning in admin when an email cannot be sent # Displays a warning in admin when an email cannot be sent

View file

@ -15,7 +15,7 @@
</svg> </svg>
{% endif %} {% endif %}
{% endif %} {% endif %}
<a href="{% namespaced_url 'domain-request' this_step %}" <a href="{% namespaced_url 'domain-request' this_step %}"
{% if this_step == steps.current %} {% if this_step == steps.current %}
class="usa-current" class="usa-current"
{% else %} {% else %}

View file

@ -130,7 +130,6 @@
{% if DomainRequest.creator %} {% if DomainRequest.creator %}
{% include "includes/summary_item.html" with title='Your contact information' value=DomainRequest.creator contact='true' heading_level=heading_level %} {% include "includes/summary_item.html" with title='Your contact information' value=DomainRequest.creator contact='true' heading_level=heading_level %}
{% endif %} {% endif %}
{% if DomainRequest.other_contacts.all %} {% if DomainRequest.other_contacts.all %}
{% include "includes/summary_item.html" with title='Other employees from your organization' value=DomainRequest.other_contacts.all contact='true' list='true' heading_level=heading_level %} {% include "includes/summary_item.html" with title='Other employees from your organization' value=DomainRequest.other_contacts.all contact='true' list='true' heading_level=heading_level %}
{% else %} {% else %}

View file

@ -2206,7 +2206,6 @@ class DomainRequestTests(TestWithUser, WebTest):
senior_official = domain_request.senior_official senior_official = domain_request.senior_official
self.assertEquals("Testy2", senior_official.first_name) self.assertEquals("Testy2", senior_official.first_name)
@override_flag("profile_feature", active=True)
@less_console_noise_decorator @less_console_noise_decorator
def test_edit_creator_in_place(self): def test_edit_creator_in_place(self):
"""When you: """When you: