|
|
|
@ -23,6 +23,9 @@
|
|
|
|
|
<abp-style src="/Pages/Blog/Shared/Styles/blog.css" />
|
|
|
|
|
</abp-style-bundle>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<abp-input asp-for="FocusCommentId"/>
|
|
|
|
|
|
|
|
|
|
<div class="vs-blog">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-12 mx-auto">
|
|
|
|
@ -173,8 +176,8 @@
|
|
|
|
|
<div class="comment-form mt-4 replyForm">
|
|
|
|
|
<div class="clearfix bg-light p-4">
|
|
|
|
|
<h3 class="mt-0">
|
|
|
|
|
@L["ReplyTo"]
|
|
|
|
|
@(commentWithRepliesDto.Comment.Writer == null ? "" : commentWithRepliesDto.Comment.Writer.UserName)
|
|
|
|
|
@L["ReplyTo", commentWithRepliesDto.Comment.Writer == null ? "" : commentWithRepliesDto.Comment.Writer.UserName]
|
|
|
|
|
|
|
|
|
|
</h3>
|
|
|
|
|
<div>
|
|
|
|
|
<form method="post">
|
|
|
|
@ -185,6 +188,7 @@
|
|
|
|
|
<textarea class="form-control no-border" name="text" id="textBoxId" rows="4"></textarea>
|
|
|
|
|
</div>
|
|
|
|
|
<abp-button button-type="Primary" class="btn-rounded float-right" type="submit" text="@L["Comment"].Value" />
|
|
|
|
|
<abp-button button-type="Danger" class="btn-rounded float-right replyCancelButton" text="@L["Cancel"].Value" />
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -201,6 +205,7 @@
|
|
|
|
|
<textarea class="form-control no-border" name="text" id="textBoxId" rows="4">@commentWithRepliesDto.Comment.Text</textarea>
|
|
|
|
|
</div>
|
|
|
|
|
<abp-button button-type="Primary" class="btn-rounded float-right" type="submit" text="@L["Submit"].Value" />
|
|
|
|
|
<abp-button button-type="Danger" class="btn-rounded float-right editCancelButton" text="@L["Cancel"].Value" />
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -249,8 +254,7 @@
|
|
|
|
|
<div class="comment-form mt-4 replyForm">
|
|
|
|
|
<div class="clearfix bg-light p-4">
|
|
|
|
|
<h3 class="mt-0">
|
|
|
|
|
@L["ReplyTo"]
|
|
|
|
|
@(commentWithRepliesDto.Comment.Writer == null ? "" : commentWithRepliesDto.Comment.Writer.UserName)
|
|
|
|
|
@L["ReplyTo",commentWithRepliesDto.Comment.Writer == null ? "" : commentWithRepliesDto.Comment.Writer.UserName]
|
|
|
|
|
</h3>
|
|
|
|
|
<div>
|
|
|
|
|
<form method="post">
|
|
|
|
@ -260,6 +264,7 @@
|
|
|
|
|
<textarea class="form-control no-border" name="text" id="textBoxId" rows="4"></textarea>
|
|
|
|
|
</div>
|
|
|
|
|
<abp-button button-type="Primary" class="btn-rounded float-right" type="submit" text="@L["Submit"].Value" />
|
|
|
|
|
<abp-button button-type="Danger" class="btn-rounded float-right replyCancelButton" text="@L["Cancel"].Value" />
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -276,6 +281,7 @@
|
|
|
|
|
<textarea class="form-control no-border" name="text" id="textBoxId" rows="4">@reply.Text</textarea>
|
|
|
|
|
</div>
|
|
|
|
|
<abp-button button-type="Primary" class="btn-rounded float-right" type="submit" text="@L["Submit"].Value" />
|
|
|
|
|
<abp-button button-type="Danger" class="btn-rounded float-right editCancelButton" text="@L["Cancel"].Value" />
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|