Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement/bootstrap interface #559

Open
wants to merge 29 commits into
base: epic/new-interface
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
5dd95f1
Subindo app clipping para gerenciamento de links e referencias a data…
marcmatias Apr 5, 2021
069eaa3
Adicionando o app na settings e setando content para as relacoes que …
marcmatias Apr 5, 2021
7301c7e
Exibindo clippings nas templates de table junto com formulario para s…
marcmatias Apr 9, 2021
dcdac32
Adicionando comando management para importar dados de csv com links/c…
marcmatias Apr 9, 2021
56fa90d
make lint
turicas May 10, 2024
0f5431d
New datasets views and urls
marcmatias Sep 13, 2021
d4384a4
New templates and updates in dataset-detail template
marcmatias Sep 13, 2021
77d6945
Link to dataset new template in dataset-card
marcmatias Sep 13, 2021
28d281f
Clipping form from dataset-detail and dataset-table-detail
marcmatias Sep 15, 2021
829c6a8
Changing breadcrumb dropdown signal
marcmatias Sep 15, 2021
6dd95ec
New fields short_description and renaming field description dataset a…
marcmatias Sep 15, 2021
bd434e3
Updating tests and migrate_wrong_usernames
marcmatias Feb 15, 2022
a24a150
make lint
turicas May 10, 2024
a3c2216
Updating ignore folders
marcmatias Jan 29, 2022
e4e623b
Logo no text
marcmatias Jan 29, 2022
ccd5d0e
Scss styles src_static folder and new datepicker and dataTables css f…
marcmatias Jan 29, 2022
b8741c8
Templates updates
marcmatias Jan 29, 2022
1e96b56
Js files updates datepicker, dataTables and map
marcmatias Feb 2, 2022
7a907d8
Forms and alerts updates and enhancements
marcmatias Feb 1, 2022
e20f325
Removing unused files
marcmatias Feb 9, 2022
1c5e053
make lint
turicas May 10, 2024
cc9b891
New endpoint for better fetch
marcmatias Mar 2, 2022
f23ec10
Updating styles
marcmatias Mar 2, 2022
6d8ad3a
Dashboard js update and datatable tranlate texts
marcmatias Mar 2, 2022
70f1c5e
Dashboard and data-tables templates update
marcmatias Mar 2, 2022
1d8ccf9
Rename custom recaptcha field
turicas May 10, 2024
e6eb445
make lint
turicas May 10, 2024
b90cecf
Remove COVID-19 banner from homepage
marcmatias May 14, 2024
d78a77e
Remove empty spaces
marcmatias May 14, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Rename custom recaptcha field
  • Loading branch information
turicas committed Jun 30, 2024
commit 1d8ccf96169dada0d0c18f8742441c7fa70e508f
2 changes: 1 addition & 1 deletion brasilio_auth/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from django.utils.translation import gettext_lazy as _
from django_registration.forms import RegistrationFormUniqueEmail

from utils.forms import FlagedReCaptchaField as ReCaptchaField
from utils.forms import FlaggedReCaptchaField as ReCaptchaField

USERNAME_REGEXP = re.compile(r"[^A-Za-z0-9_]")
PUNCT_REGEXP = re.compile("[-/ .]")
Expand Down
2 changes: 1 addition & 1 deletion core/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from core.data_models import EmpresaTableConfig
from core.models import get_table_model
from utils.forms import FlagedReCaptchaField as ReCaptchaField
from utils.forms import FlaggedReCaptchaField as ReCaptchaField


def numbers_only(value):
Expand Down
2 changes: 1 addition & 1 deletion utils/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from django_recaptcha.fields import ReCaptchaField


class FlagedReCaptchaField(ReCaptchaField):
class FlaggedReCaptchaField(ReCaptchaField):
def validate(self, *args, **kwargs):
if settings.DISABLE_RECAPTCHA:
self.validators = []
Expand Down