apostello-form

apostello forms (forked from django-semanticui-form)


Keywords
SemanticUI
License
BSD-3-Clause
Install
pip install apostello-form==0.0.2

Documentation

Django Semantic UI form

PyPI version https://travis-ci.org/peterbe/django-semanticui-form.png?branch=master https://coveralls.io/repos/peterbe/django-semanticui-form/badge.png?branch=master

Semantic UI for Django Form.

A simple Django template tag to work with Semantic UI

This project is a fork from django-bootstrap-form by tzangms.

Usage

Add semanticuiform to your INSTALLED_APPS.

At the top of your template load in our template tags:

{% load semanticui %}

Then to render your form:

<form class="ui form">
    <legend>Form Title</legend>
    {% csrf_token %}
    {{ form|semanticui }}
    <button class="ui button" type="submit">Submit</button>
</form>

To make the form with inline element, change the |semanticui template tag to |semanticui_inline.:

<form class="ui form">
    <legend>Form Title</legend>
    {% csrf_token %}
    {{ form|semanticui_inline }}
    <button class="ui button" type="submit">Submit</button>
    </form>

Demo

Not yet.