mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-01-22 11:21:47 -05:00
bug dialogs
This commit is contained in:
parent
974380a095
commit
365c54c183
1 changed files with 15 additions and 1 deletions
|
@ -50,7 +50,21 @@
|
||||||
{
|
{
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<strong><a href="#md_@bug.Id" data-toggle="modal"></a></strong><br/>
|
<div class="modal fade in" id="md_@bug.Id">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h2>View bug</h2>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
@Html.Partial("~/Views/Bugs/ViewBug.cshtml", new ViewBugViewModel
|
||||||
|
{
|
||||||
|
BugData = bug,
|
||||||
|
Comment = ""
|
||||||
|
})
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<strong><a href="#md_@bug.Id" data-toggle="modal">@bug.Name</a></strong><br/>
|
||||||
<p>Reported at: @bug.ReportedAt • Reported by: @Html.UserLink(bug.Reporter)</p>
|
<p>Reported at: @bug.ReportedAt • Reported by: @Html.UserLink(bug.Reporter)</p>
|
||||||
</td>
|
</td>
|
||||||
@switch (bug.Urgency)
|
@switch (bug.Urgency)
|
||||||
|
|
Loading…
Reference in a new issue