import React from 'react' import { Delimiter, PageWrapper, PageTitle, PageContent } from 'tracim_frontend_lib' import { translate } from 'react-i18next' class AdminWorkspacePage extends React.Component { render () { return (
{this.props.t('This page list all workspaces')}
{ /* Alexi Cauvin 08/08/2018 => desactivate create workspace button due to redundancy
*/ }
{ /* */ } { /* */ } { /* */ } { /* */ } { /* */ } { /* */ } { /* */ }
{this.props.t('ID')} {this.props.t('Workspace')} {this.props.t('Description')} {this.props.t("Member's number")} {this.props.t('Calendar')} {this.props.t('Delete workspace')}
1 Design v_2 Workspace about tracim v2 design
Enable
8
Delete
2 New features Add a new features : Annotated files
Disable
5
Delete
3 Fix Backend workspace referring to multiple issues on the backend
Enable
3
Delete
4 Design v_2 Workspace about tracim v2 design
Disable
8
Delete
5 New features Add a new features : Annotated files
Disable
5
Delete
6 Fix Backend workspace referring to multiple issues on the backend
Enable
3
Delete
) } } export default translate()(AdminWorkspacePage)