Example #1
0
def get_success_page_template_choices():
    """
    :return list:
    """
    return get_template_choices('feincms_integration',
                                SUCCESS_PAGE_TEMPLATE_CHOICES,
                                'success_page_template_choices')
Example #2
0
def get_success_page_template_choices():
    """Get success page template choices.

    :return list:
    """
    return get_template_choices('mezzanine_integration',
                                SUCCESS_PAGE_TEMPLATE_CHOICES,
                                'success_page_template_choices')
Example #3
0
def get_form_template_choices():
    """Gets the form template choices.

    It's possible to provide theme templates per theme or just per project.

    :return list:
    """
    return get_template_choices('feincms_integration', FORM_TEMPLATE_CHOICES,
                                'form_template_choices')
Example #4
0
def get_success_page_template_choices():
    """
    :return list:
    """
    return get_template_choices(
        'feincms_integration',
        SUCCESS_PAGE_TEMPLATE_CHOICES,
        'success_page_template_choices'
        )
Example #5
0
def get_success_page_template_choices():
    """Get success page template choices.

    :return list:
    """
    return get_template_choices(
        'djangocms_integration',
        SUCCESS_PAGE_TEMPLATE_CHOICES,
        'success_page_template_choices'
    )
Example #6
0
def get_form_template_choices():
    """
    Gets the form template choices. It's possible to provide theme templates
    per theme or just per project.

    :return list:
    """
    return get_template_choices(
        'feincms_integration',
        FORM_TEMPLATE_CHOICES,
        'form_template_choices'
        )