diff --git a/netforce_clinic/controllers/__init__.py b/netforce_clinic/controllers/__init__.py
index e69de29..28d05a8 100644
--- a/netforce_clinic/controllers/__init__.py
+++ b/netforce_clinic/controllers/__init__.py
@@ -0,0 +1 @@
+from . import del_patient_move
diff --git a/netforce_clinic/controllers/del_patient_move.py b/netforce_clinic/controllers/del_patient_move.py
new file mode 100644
index 0000000..a878e64
--- /dev/null
+++ b/netforce_clinic/controllers/del_patient_move.py
@@ -0,0 +1,15 @@
+from netforce.controller import Controller
+
+
+class DelPatientMove(Controller):
+    _path="/del_patient_move"
+
+    def get(self):
+        try:
+            id=self.get_argument("id")
+            id=int(id)
+            get_model("clinic.patient.move").delete([id])
+        except Exception as e:
+            print("ERROR ", e)
+
+DelPatientMove.register()
diff --git a/netforce_clinic/layouts/clinic_patient_form.xml b/netforce_clinic/layouts/clinic_patient_form.xml
index ae27786..154e604 100644
--- a/netforce_clinic/layouts/clinic_patient_form.xml
+++ b/netforce_clinic/layouts/clinic_patient_form.xml
@@ -174,7 +174,7 @@
         
     
     
-        
-            
+        
+        
     
 
diff --git a/netforce_clinic/layouts/clinic_patient_list.xml b/netforce_clinic/layouts/clinic_patient_list.xml
index 556e1b5..a15fd14 100644
--- a/netforce_clinic/layouts/clinic_patient_list.xml
+++ b/netforce_clinic/layouts/clinic_patient_list.xml
@@ -1,6 +1,7 @@
 
     
          
+         
     
     
     
diff --git a/netforce_clinic/layouts/new_patient.xml b/netforce_clinic/layouts/new_patient.xml
index bf5abee..5253c54 100644
--- a/netforce_clinic/layouts/new_patient.xml
+++ b/netforce_clinic/layouts/new_patient.xml
@@ -3,6 +3,7 @@
     
     
         
+        
     
     
     
@@ -14,10 +15,19 @@
         
             
                 
-                
+                
+                
+                
+                
             
+    
+        
+        
+        
+        
+    
     
         
 
@@ -25,6 +35,6 @@
         
 
         
-        
+        
     
 
diff --git a/netforce_clinic/layouts/patient_move_form.xml b/netforce_clinic/layouts/patient_move_form.xml
index 7c470f2..c4286ec 100644
--- a/netforce_clinic/layouts/patient_move_form.xml
+++ b/netforce_clinic/layouts/patient_move_form.xml
@@ -1,5 +1,8 @@