• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

iplweb / bpp / 6d44c0b3-f0a3-49ae-83a8-7930c72fa7ab

20 Aug 2025 08:18PM UTC coverage: 43.613% (-2.8%) from 46.448%
6d44c0b3-f0a3-49ae-83a8-7930c72fa7ab

push

circleci

mpasternak
Merge tag 'v202508.1192' into dev

Nowa wersja: v202508.1192 v202508.1192

1 of 1 new or added line in 1 file covered. (100.0%)

2206 existing lines in 121 files now uncovered.

16630 of 38131 relevant lines covered (43.61%)

0.8 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
src/bpp/forms/__init__.py
1
from crispy_forms.helper import FormHelper
2✔
2
from crispy_forms.layout import Hidden
2✔
3
from crispy_forms_foundation.layout import ButtonHolder, Fieldset, Layout, Submit
2✔
4

5
from django.contrib.auth import REDIRECT_FIELD_NAME
2✔
6
from django.contrib.auth.forms import AuthenticationForm
2✔
7

8

9
class MyAuthenticationForm(AuthenticationForm):
2✔
10
    def __init__(self, request=None, *args, **kw):
2✔
UNCOV
11
        self.helper = FormHelper()
1✔
UNCOV
12
        self.helper.form_class = "custom"
1✔
UNCOV
13
        self.helper.form_action = "."
1✔
UNCOV
14
        self.helper.layout = Layout(
1✔
15
            Fieldset(
16
                "Zaloguj się!",
17
                "username",
18
                "password",
19
                Hidden(REDIRECT_FIELD_NAME, """"{{next}}"""),
20
            ),
21
            ButtonHolder(
22
                Submit(
23
                    "submit",
24
                    "Zaloguj się",
25
                    css_id="id_submit",
26
                    css_class="submit button",
27
                ),
28
            ),
29
        )
UNCOV
30
        AuthenticationForm.__init__(self, request, *args, **kw)
1✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc