diff --git a/README.md b/README.md index db40c47..b370720 100644 --- a/README.md +++ b/README.md @@ -27,12 +27,10 @@ INSTALLED_APPS = [
``` -***Note*** : The first argument of `fieldset` tag is the `form` the second the list -`fieldsets` where you have defined the positioning of your different elements and -the last the color of the title of the fieldset (by default this value is at `#79AEC8`) +***Note*** : The fieldset filter receives the color of the titles of the form groups, by default this color is used: # 79AEC8) Complete Guide ---------- @@ -108,7 +106,6 @@ def home(request): #save... context = { 'form': form, - 'fieldsets': form.fieldsets, 'inline_form': InlineForm() } return render(request, 'home.html', context) @@ -127,8 +124,8 @@ def home(request):