render () {
    const { dispatch, _T } = this.props
    const title = _T('title.manage')
    const defaultTitle = _T('title.site')

    return (
      <div>
        <Helmet title={`${title} | ${defaultTitle}`} />
        <Manage
          {...bindActionCreators(UserActions, dispatch)}
          {...this.props}
          loadFunc={this.loadFunc}
          options={ManageFormOptions(this.props.defaultLocale)} />
      </div>
    )
  }
}))(connectI18n(locale => ({
  options: ManageFormOptions(locale)
}))(ManageHandler))