Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

Default.cshtml

@model PrivateMessageListModel 
<div class="private-messages-box">
    <script asp-location="Footer">
        $(function() {
            $('#select-all-inbox').on('click', function () {
                $('#pm-inbox-table .rowcheckbox').prop('checked', $(this).is(':checked')).trigger('change');
            });

            $('#pm-inbox-table .rowcheckbox').on('change', function (e) {
                var numChkBoxes = $('#pm-inbox-table .rowcheckbox').length;
                var numChkBoxesChecked = $('#pm-inbox-table .rowcheckbox:checked').length;
                $('#select-all-inbox').prop('checked', numChkBoxes == numChkBoxesChecked && numChkBoxes > 0);
            });
        });
    </script>
    @if (Model.Messages.Count > 0)
    {
        <form asp-route="@NopRouteNames.Standard.PRIVATE_MESSAGES_INBOX" method="post">
            <div class="table-wrapper">
                <table class="data-table" id="pm-inbox-table">
                    <colgroup>
                        <col width="1" />
                        <col />
                        <col />
                        <col width="1" />
                    </colgroup>
                    <thead>
                    <tr>
                        <th class="select">
                            <input type="checkbox" id="select-all-inbox" aria-label="@T("PrivateMessages.Inbox")"/>
                        </th>
                        <th class="from">
                            @T("PrivateMessages.Inbox.FromColumn")
                        </th>
                        <th class="subject">
                            @T("PrivateMessages.Inbox.SubjectColumn")
                        </th>
                        <th class="date">
                            @T("PrivateMessages.Inbox.DateColumn")
                        </th>
                    </tr>
                    </thead>
                    <tbody>
                    @for (var i = 0; i < Model.Messages.Count; i++)
                    {
                        var item = Model.Messages[i];
                        <tr @(i % 2 == 0 ? Html.Raw(" class=\"odd\"") : Html.Raw(" class=\"even\""))>
                            <td class="select">
                                <input type="checkbox" name="pm@(item.Id)" class="rowcheckbox" aria-label="@T("PrivateMessages.PM")"/>
                            </td>
                            <td class="from">
                                @if (item.AllowViewingFromProfile)
                                {
                                    @Html.RouteLink(item.CustomerFromName, NopRouteNames.Standard.CUSTOMER_PROFILE, new { Id = item.FromCustomerId })
                                }
                                else
                                {
                                    @item.CustomerFromName
                                }
                            </td>
                            <td class="subject">
                                    @Html.RouteLink(item.Subject, NopRouteNames.Standard.VIEW_PM, new { privateMessageId = item.Id }, new { @class = (item.IsRead) ? "pm-read" : "pm-unread" })
                            </td>
                            <td class="date">
                                @item.CreatedOn
                            </td>
                        </tr>
                    }
                    </tbody>
                </table>
            </div>
            @{
                var pager = await Html.PagerAsync(Model.PagerModel);
            }
            @if (!string.IsNullOrEmpty(await pager.RenderHtmlContentAsync()))
            {
                <div class="pager">
                    @pager
                </div>
            }
            <div class="buttons">
                <button type="submit" class="button-1 delete-selected-pm-button" name="delete-inbox">@T("PrivateMessages.Inbox.DeleteSelected")</button>
                <button type="submit" name="mark-unread" class="button-2 mark-unread-pm-button">@T("PrivateMessages.Inbox.MarkAsUnread")</button>
            </div>
        </form>
    }
    else
    {
        <div class="no-items">@T("PrivateMessages.Inbox.NoItems")</div>
    }
</div>