Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Manage Steps button and description for Deployment. Fix #11924 #11925

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/OrchardCore.Modules/OrchardCore.Deployment/Manifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
Author = ManifestConstants.OrchardCoreTeam,
Website = ManifestConstants.OrchardCoreWebsite,
Version = ManifestConstants.OrchardCoreVersion,
Category = "Deployment"
Category = "Deployment",
Description = "Provides a way to import and export packages"
MikeAlhayek marked this conversation as resolved.
Show resolved Hide resolved
)]
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
<li class="list-group-item">
<div class="w-100">
<div class="float-end">
<a asp-action="Display" asp-route-id="@entry.DeploymentPlan.Id" class="btn btn-info btn-sm">@T["Manage Steps"]</a>
<a asp-action="Edit" asp-route-id="@entry.DeploymentPlan.Id" class="btn btn-primary btn-sm">@T["Edit"]</a>
<a asp-action="Delete" asp-route-id="@entry.DeploymentPlan.Id" class="btn btn-danger btn-sm" data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
</div>
Expand All @@ -75,7 +76,7 @@
{
<li class="list-group-item">
<div class="alert alert-info mb-0" role="alert">
@T["<strong>Nothing here!</strong> There are no deployment plans for the moment."]
@T["<strong>Nothing here!</strong> There are no deployment plans at the moment."]
</div>
</li>
}
Expand Down