Skip to content
View jmorakuebler's full-sized avatar
  • Asuncion, Paraguay
Block or Report

Block or report jmorakuebler

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Custom ModelForm class with django-c... Custom ModelForm class with django-crispy-forms' FormHelper. You can optionally provide your own layout
    1
    from django.forms import ModelForm
    2
    from crispy_forms.helper import FormHelper
    3
    from crispy_forms.bootstrap import FormActions
    4
    from crispy_forms.layout import Layout, HTML, Div, Submit
    5
    
                  
  2. Custom BaseInlineFormSet to check fo... Custom BaseInlineFormSet to check for duplicates in a inline formset
    1
    class CustomBaseInlineFormSet(BaseInlineFormSet):
    2
        """
    3
        Custom BaseInlineFormSet with overridden clean method to look for
    4
        duplicates in the inline formset.
    5
        A message will appear under the offending field.
  3. Custom django template tag that retu... Custom django template tag that returns the verbose name of a field.
    1
    from django.template import Library
    2
    
                  
    3
    register = Library()
    4
    
                  
    5