|  |  | @ -607,7 +607,7 @@ namespace Acme.BookStore.Web.Menus | 
			
		
	
		
		
			
				
					
					|  |  |  |         { |  |  |  |         { | 
			
		
	
		
		
			
				
					
					|  |  |  |             //<-- added the below code |  |  |  |             //<-- added the below code | 
			
		
	
		
		
			
				
					
					|  |  |  |             context.Menu.AddItem( |  |  |  |             context.Menu.AddItem( | 
			
		
	
		
		
			
				
					
					|  |  |  |                 new ApplicationMenuItem("BooksStore", l["Menu:BookStore"]) |  |  |  |                 new ApplicationMenuItem("BooksStore", l["Menu:BookStore"], icon: "fa fa-book") | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |                     .AddItem( |  |  |  |                     .AddItem( | 
			
		
	
		
		
			
				
					
					|  |  |  |                         new ApplicationMenuItem("BooksStore.Books", l["Menu:Books"], url: "/Books") |  |  |  |                         new ApplicationMenuItem("BooksStore.Books", l["Menu:Books"], url: "/Books") | 
			
		
	
		
		
			
				
					
					|  |  |  |                     ) |  |  |  |                     ) | 
			
		
	
	
		
		
			
				
					|  |  | @ -646,7 +646,16 @@ Open the `en.json` (*English translations*) file and add the below localization | 
			
		
	
		
		
			
				
					
					|  |  |  |     "Type": "Type", |  |  |  |     "Type": "Type", | 
			
		
	
		
		
			
				
					
					|  |  |  |     "Price": "Price", |  |  |  |     "Price": "Price", | 
			
		
	
		
		
			
				
					
					|  |  |  |     "CreationTime": "Creation time", |  |  |  |     "CreationTime": "Creation time", | 
			
		
	
		
		
			
				
					
					|  |  |  |     "AreYouSureToDelete": "Are you sure you want to delete this item?" |  |  |  |     "AreYouSureToDelete": "Are you sure you want to delete this item?", | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     "Enum:BookType:0": "Undefined", | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     "Enum:BookType:1": "Adventure", | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     "Enum:BookType:2": "Biography", | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     "Enum:BookType:3": "Dystopia", | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     "Enum:BookType:4": "Fantastic", | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     "Enum:BookType:5": "Horror", | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     "Enum:BookType:6": "Science", | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     "Enum:BookType:7": "ScienceFiction", | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     "Enum:BookType:8": "Poetry" | 
			
		
	
		
		
			
				
					
					|  |  |  |   } |  |  |  |   } | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | ```` |  |  |  | ```` | 
			
		
	
	
		
		
			
				
					|  |  | @ -716,7 +725,11 @@ $(function () { | 
			
		
	
		
		
			
				
					
					|  |  |  |         ajax: abp.libs.datatables.createAjax(acme.bookStore.book.getList), |  |  |  |         ajax: abp.libs.datatables.createAjax(acme.bookStore.book.getList), | 
			
		
	
		
		
			
				
					
					|  |  |  |         columnDefs: [ |  |  |  |         columnDefs: [ | 
			
		
	
		
		
			
				
					
					|  |  |  |             { data: "name" }, |  |  |  |             { data: "name" }, | 
			
		
	
		
		
			
				
					
					|  |  |  |             { data: "type" }, |  |  |  |             { data: "type", | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |               render: function(data){ | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |                 return l('Enum:BookType:' + data); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |               } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |             }, | 
			
		
	
		
		
			
				
					
					|  |  |  |             { data: "publishDate" }, |  |  |  |             { data: "publishDate" }, | 
			
		
	
		
		
			
				
					
					|  |  |  |             { data: "price" }, |  |  |  |             { data: "price" }, | 
			
		
	
		
		
			
				
					
					|  |  |  |             { data: "creationTime" } |  |  |  |             { data: "creationTime" } | 
			
		
	
	
		
		
			
				
					|  |  | 
 |