Skip to content

Commit

Permalink
Add Manage Steps button and description for Deployment. Fix #11924 (#…
Browse files Browse the repository at this point in the history
…11925)

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

* update the descriptions
  • Loading branch information
MikeAlhayek authored Jun 30, 2022
1 parent 63b222c commit d148fc2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
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 recipes"
)]
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

0 comments on commit d148fc2

Please sign in to comment.