10 |             @if (Model.ModelState == BugsModelState.Collection)
11 |             {
12 |                 
13 |                     @foreach (BugDTO bug in Model.Bugs)
14 |                     {
15 |                         - 
16 |                             Title: @bug.Title
17 |                             Description: @bug.Description
18 |                             Assigned To: @bug.AssignedTo
19 |                             @if (@bug.Status == "Backlog")
20 |                             {
21 |                                 
26 |                             }
27 |                             @if (@bug.Status == "Working")
28 |                             {
29 |                                 
34 |                                 
39 |                             }
40 |                             @if (@bug.Status == "Done")
41 |                             {
42 |                                 
47 |                             }
48 |                             @if (@bug.Status == "QA")
49 |                             {
50 |                                 
55 |                                 
60 |                             }
61 |                         62 |                     }
63 |
64 |             }
65 |         
67 |             @if (Model.ModelState == BugsModelState.Home) {
68 |                 
Add a new bug!
69 |                 
74 |             }
75 |         
76 |