diff --git a/cps/templates/book_table.html b/cps/templates/book_table.html
index 4b379b37..9ba173bb 100644
--- a/cps/templates/book_table.html
+++ b/cps/templates/book_table.html
@@ -6,7 +6,7 @@
     data-escape="true"
     {% if g.user.role_edit() %}
         data-editable-type="text"
-        data-editable-url="{{ url_for('editbook.edit_list_book', param=parameter)}}"
+        data-editable-url="{{ url_for('edit-book.edit_list_book', param=parameter)}}"
         data-editable-title="{{ edit_text }}"
         data-edit="true"
         {% if validate %}data-edit-validate="{{ _('This Field is Required') }}" {% endif %}
@@ -66,30 +66,30 @@
             {{ text_table_row('authors', _('Enter Authors'),_('Authors'), true, true) }}
             {{ text_table_row('tags', _('Enter Categories'),_('Categories'), false, true) }}
             {{ text_table_row('series', _('Enter Series'),_('Series'), false, true) }}
-            
{{_('Series Index')}} | 
+            
{{_('Series Index')}} | 
             {{ text_table_row('languages', _('Enter Languages'),_('Languages'), false, true) }}
             
             {{ text_table_row('publishers', _('Enter Publishers'),_('Publishers'), false, true) }}
-            
+            
             {% if g.user.check_visibility(32768) %}
                 {{ book_checkbox_row('is_archived', _('Archiv Status'), false)}}
             {%  endif %}
             {{ book_checkbox_row('read_status', _('Read Status'), false)}}
             {% for c in cc %}
               {% if c.datatype == "int" %}
-                
{{c.name}} | 
+                
{{c.name}} | 
               {% elif c.datatype == "rating" %}
-                
{{c.name}} | 
+                
{{c.name}} | 
               {% elif c.datatype == "float" %}
-                
{{c.name}} | 
+                
{{c.name}} | 
               {% elif c.datatype == "enumeration" %}
-                
{{c.name}} | 
+                
{{c.name}} | 
               {% elif c.datatype in ["datetime"] %}
                   
               {% elif c.datatype == "text" %}
                  {{ text_table_row('custom_column_' + c.id|string, _('Enter ') + c.name, c.name, false, false) }}
               {% elif c.datatype == "comments" %}
-                  
{{c.name}} | 
+                  
{{c.name}} | 
               {% elif c.datatype == "bool" %}
                   {{ book_checkbox_row('custom_column_' + c.id|string, c.name, false)}}
               {% else %}
diff --git a/cps/templates/detail.html b/cps/templates/detail.html
index c2153db8..38005cb9 100644
--- a/cps/templates/detail.html
+++ b/cps/templates/detail.html
@@ -138,7 +138,7 @@
         
         
         {% for identifier in entry.identifiers %}
-          {{identifier.formatType()}}
+          {{identifier.format_type()}}
         {%endfor%}
       
       
@@ -295,7 +295,7 @@
       {% if g.user.role_edit() %}
       
       {% endif %}
diff --git a/cps/templates/layout.html b/cps/templates/layout.html
index ec69c91b..0d0df778 100644
--- a/cps/templates/layout.html
+++ b/cps/templates/layout.html
@@ -60,7 +60,7 @@
             {% if g.user.is_authenticated or g.allow_anonymous %}
               {% if g.user.role_upload() and g.allow_upload %}
                   
-