+ );
+ }
+
+}
+
+export default Listing;
\ No newline at end of file
diff --git a/client/src/core-components/listing.scss b/client/src/core-components/listing.scss
new file mode 100644
index 00000000..7539b5b0
--- /dev/null
+++ b/client/src/core-components/listing.scss
@@ -0,0 +1,25 @@
+@import "../scss/vars";
+
+.listing {
+ border: 2px solid $grey;
+ min-height: 300px;
+
+ &__header {
+ padding: 15px 0;
+ }
+
+ &__menu {
+ text-align: left;
+ }
+
+ &__add {
+
+ &-button {
+ border-radius: 0;
+ height: 36px;
+ font-size: $font-size--sm;
+ text-transform: none;
+ width: 100%;
+ }
+ }
+}
\ No newline at end of file
diff --git a/client/src/core-components/menu.js b/client/src/core-components/menu.js
index 3a7d849f..b0b98eb2 100644
--- a/client/src/core-components/menu.js
+++ b/client/src/core-components/menu.js
@@ -11,7 +11,7 @@ class Menu extends React.Component {
id: React.PropTypes.string,
itemsRole: React.PropTypes.string,
header: React.PropTypes.string,
- type: React.PropTypes.oneOf(['primary', 'secondary', 'navigation']),
+ type: React.PropTypes.oneOf(['primary', 'secondary', 'navigation', 'horizontal', 'horizontal-list']),
items: React.PropTypes.arrayOf(React.PropTypes.shape({
content: React.PropTypes.oneOfType([React.PropTypes.string, React.PropTypes.number]),
icon: React.PropTypes.string
diff --git a/client/src/data/languages/en.js b/client/src/data/languages/en.js
index d76fc07d..11394104 100644
--- a/client/src/data/languages/en.js
+++ b/client/src/data/languages/en.js
@@ -18,14 +18,8 @@ export default {
'EDIT_PROFILE': 'Edit Profile',
'CLOSE_SESSION': 'Close session',
'CREATE_TICKET': 'Create Ticket',
- 'CREATE_TICKET_DESCRIPTION': 'This is a form for creating tickets. Fill the form and send us your issues/doubts/suggestions. Our support system will answer it as soon as possible.',
'TICKET_LIST': 'Ticket List',
- 'TICKET_LIST_DESCRIPTION': 'Here you can find a list of all tickets you have sent to our support team.',
- 'TICKETS_DESCRIPTION': 'Send ticket through our support center and get response of your doubts, suggestions and issues.',
- 'ARTICLES_DESCRIPTION': 'Take a look to our articles about common issues, guides and documentation.',
- 'ACCOUNT_DESCRIPTION': 'All your tickets are stored in your accounts\'s profile. Keep track off all your tickets you send to our staff team.',
'SUPPORT_CENTER': 'Support Center',
- 'SUPPORT_CENTER_DESCRIPTION': 'Welcome to our support center. You can contact us through a tickets system. Your tickets will be answered by our staff.',
'DEPARTMENT': 'Department',
'AUTHOR': 'Author',
'DATE': 'Date',
@@ -61,6 +55,15 @@ export default {
'MEDIUM': 'Medium',
'LOW': 'Low',
'TITLE': 'Title',
+
+ //VIEW DESCRIPTIONS
+ 'CREATE_TICKET_DESCRIPTION': 'This is a form for creating tickets. Fill the form and send us your issues/doubts/suggestions. Our support system will answer it as soon as possible.',
+ 'TICKET_LIST_DESCRIPTION': 'Here you can find a list of all tickets you have sent to our support team.',
+ 'TICKETS_DESCRIPTION': 'Send ticket through our support center and get response of your doubts, suggestions and issues.',
+ 'ARTICLES_DESCRIPTION': 'Take a look to our articles about common issues, guides and documentation.',
+ 'ACCOUNT_DESCRIPTION': 'All your tickets are stored in your accounts\'s profile. Keep track off all your tickets you send to our staff team.',
+ 'SUPPORT_CENTER_DESCRIPTION': 'Welcome to our support center. You can contact us through a tickets system. Your tickets will be answered by our staff.',
+ 'CUSTOM_RESPONSES_DESCRIPTION': 'Custom responses are automated responses for common problems',
//ERRORS
'EMAIL_OR_PASSWORD': 'Email or password invalid',