diff --git a/.fabmanager-version b/.fabmanager-version
index 0cadbc1e3..da6b0a8f1 100644
--- a/.fabmanager-version
+++ b/.fabmanager-version
@@ -1 +1 @@
-2.5.5
+2.5.6
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c00b1b210..d8c2c8ff7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog Fab Manager
+## v2.5.6 2017 May 18
+
+- Ability for admins to create users as organizations
+- Invoices object will contain the organization name if any (#64)
+- RSS feeds will return more data about events and projects, especially images
+- Improved Docker documentation (#65)
+
## v2.5.5 2017 May 15
- Fix a bug: New groups does not have their spaces prices initialized
diff --git a/app/assets/javascripts/controllers/admin/members.coffee.erb b/app/assets/javascripts/controllers/admin/members.coffee.erb
index 14b2c42a9..6e0d2f016 100644
--- a/app/assets/javascripts/controllers/admin/members.coffee.erb
+++ b/app/assets/javascripts/controllers/admin/members.coffee.erb
@@ -535,6 +535,15 @@ Application.Controllers.controller "NewMemberController", ["$scope", "$state", "
$scope.user =
plan_interval: ''
+ ## Callback when the admin check/unckeck the box telling that the new user is an organization.
+ ## Disable or enable the organization fields in the form, accordingly
+ $scope.toggleOrganization = ->
+ if $scope.user.organization
+ $scope.user.profile = {} unless $scope.user.profile
+ $scope.user.profile.organization = {}
+ else
+ $scope.user.profile.organization = undefined
+
## Using the MembersController
diff --git a/app/assets/templates/admin/members/new.html.erb b/app/assets/templates/admin/members/new.html.erb
index 30c049de1..a4b233c19 100644
--- a/app/assets/templates/admin/members/new.html.erb
+++ b/app/assets/templates/admin/members/new.html.erb
@@ -9,7 +9,7 @@