Index: branches/Abonament/Wierszowki/Wierszowki.Web/Views/MagazineItem/Confirm.aspx
===================================================================
--- branches/Abonament/Wierszowki/Wierszowki.Web/Views/MagazineItem/Confirm.aspx (revision 795)
+++ branches/Abonament/Wierszowki/Wierszowki.Web/Views/MagazineItem/Confirm.aspx (revision 839)
@@ -4,8 +4,23 @@
 	Potwierdzenie dodania wierszówki
 </asp:Content>
-
 <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
-
+<%
+    if (ViewData["message"] == "delete")
+    {
+%>
+        <h4>Pomylnie usuniêto wierszówkê!</h4>
+<%
+    }
+    else if(ViewData["message"] == "null"){
+%>
+        <h6>Nie mo¿na wykonaæ operacji. B³êdny numer id!!! </h6>
+<%  }
+    else
+    {
+%>
     <h2>Pomylnie dodano/zaktualizowano wierszówkê dla: <%= Html.Encode(ViewData.Model.FirstName + " " + ViewData.Model.LastName)%></h2>
+<%     
+    }
+%>
     <div>
         <%=Html.ActionLink("Powrót", "Index", "Report") %>
Index: branches/Abonament/Wierszowki/Wierszowki.Web/Views/MagazineItem/Delete.aspx
===================================================================
--- branches/Abonament/Wierszowki/Wierszowki.Web/Views/MagazineItem/Delete.aspx (revision 839)
+++ branches/Abonament/Wierszowki/Wierszowki.Web/Views/MagazineItem/Delete.aspx (revision 839)
@@ -0,0 +1,22 @@
+<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<Wierszowki.Models.MagazineItemViewData>" %>
+
+<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
+	Delete
+</asp:Content>
+
+<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
+ 
+ <% using (Html.BeginForm("Delete","MagazineItem"))
+    { %>
+        <h2>Czy napewno chcesz usun¹æ wierszówkê??? </h2>
+        <div class="submit">                
+            <input type="submit" value="Usuñ" />                
+        </div>
+        <br />       
+ <% } %>   
+    <div>
+        <%=Html.ActionLink("Powrót", "Index", "Home") %>
+    </div>
+</asp:Content>
+
+
Index: branches/Abonament/Wierszowki/Wierszowki.Web/Views/Report/Index.aspx
===================================================================
--- branches/Abonament/Wierszowki/Wierszowki.Web/Views/Report/Index.aspx (revision 795)
+++ branches/Abonament/Wierszowki/Wierszowki.Web/Views/Report/Index.aspx (revision 839)
@@ -98,10 +98,8 @@
                     </td>
                     <td>
-                        <select id="user" name="user">
-                            <option value="3">zbyszek</option>
-                            <option value="4">slawek</option>
-                        </select>
+                        
+                        <%= Html.DropDownList("user", Model.UserList)%>
                     </td>
-                </tr>
+                </tr>                
                 <tr>
                     <td></td>
@@ -165,10 +163,5 @@
                     </td>
                     <td>
-                        <select id="employment" name="employment">
-                            <option value="1">AACT</option>
-                            <option value="2">Sam Press</option>
-                            <option value="3">Umowa o dzie³o</option>
-			                <option value="4">Faktura VAT</option>
-                        </select>
+                        <%= Html.DropDownList("employment", Model.EmploymentTypeList)%>
                     </td>
                 </tr>
Index: branches/Abonament/Wierszowki/Wierszowki.Web/Views/Report/All.aspx
===================================================================
--- branches/Abonament/Wierszowki/Wierszowki.Web/Views/Report/All.aspx (revision 795)
+++ branches/Abonament/Wierszowki/Wierszowki.Web/Views/Report/All.aspx (revision 839)
@@ -9,4 +9,5 @@
     <table>
         <tr>
+            <th></th>
             <th></th>
             <th>Miesi¹c</th>
@@ -27,4 +28,7 @@
             <td>
                 <%= Html.ActionLink("Edycja", "Edit", "MagazineItem", new { id=item.Id }, null) %>
+            </td>
+            <td>
+                <%= Html.ActionLink("Usuñ", "Delete", "MagazineItem", new { id=item.Id }, null) %>
             </td>
             <td>
Index: branches/Abonament/Wierszowki/Wierszowki.Web/Views/User/Confirm.aspx
===================================================================
--- branches/Abonament/Wierszowki/Wierszowki.Web/Views/User/Confirm.aspx (revision 752)
+++ branches/Abonament/Wierszowki/Wierszowki.Web/Views/User/Confirm.aspx (revision 839)
@@ -6,6 +6,23 @@
 
 <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
-
-    <h2>Pomylnie dodano/zaktualizowano u¿ytkownika: <%= Html.Encode(ViewData.Model.FirstName + " " + ViewData.Model.LastName) %></h2>
+<%if (ViewData["message"] == "error_user")
+  {
+%>
+    <h4>Nie mo¿na edytowaæ u¿ytkownika, gdy¿ login ró¿ni siê od zalogowanego!!!</h4> 
+<%      
+  }
+  else if (ViewData["message"] == "error")
+  {
+%>
+    <h6>Nie mo¿na edytowaæ u¿ytkownika, gdy¿ u¿ytkownik o takim id nie istnieje !!!</h6> 
+<%
+  }
+  else
+  {
+%>
+    <h2>Pomylnie dodano/zaktualizowano u¿ytkownika: <%= Html.Encode(ViewData.Model.FirstName + " " + ViewData.Model.LastName) %></h2> 
+<%      
+  }
+%>
     <div>
         <%=Html.ActionLink("Powrót do listy u¿ytkowników", "Index") %>
