-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
133 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
src/OrchardCore.Modules/OrchardCore.Facebook/Views/FacebookLoginSettings.Edit.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
src/OrchardCore.Modules/OrchardCore.Facebook/Views/FacebookSettings.Edit.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
src/OrchardCore.Modules/OrchardCore.GitHub/Views/GithubAuthenticationSettings.Edit.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
src/OrchardCore.Modules/OrchardCore.Google/Views/GoogleAnalyticsSettings.Edit.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
src/OrchardCore.Modules/OrchardCore.Google/Views/GoogleAuthenticationSettings.Edit.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 30 additions & 28 deletions
58
src/OrchardCore.Modules/OrchardCore.Media.Azure/Views/Admin/Options.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,45 @@ | ||
@model OrchardCore.Media.Azure.ViewModels.OptionsViewModel | ||
<h1>@RenderTitleSegments(T["Azure Blob storage options"])</h1> | ||
|
||
<p class="alert alert-secondary">@T["Azure Blob storage is configured with appsettings.json."]</p> | ||
<p class="alert alert-secondary"> | ||
@T["Azure Blob storage is configured with appsettings.json."] | ||
<i class="fa fa-book"></i> <a href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Media.Azure/#configuration" target="_blank">@T["See documentation"]</a> | ||
</p> | ||
|
||
<a href="https://docs.orchardcore.net/en/dev/docs/reference/modules/Media.Azure/#configuration">@T["See documentation"]</a> | ||
<div class="form-group row"> | ||
<label asp-for="ConnectionString" class="col-sm-2 col-form-label">@T["Connection String"]</label> | ||
<div class="col-sm-10"> | ||
<code> | ||
@if(!String.IsNullOrEmpty(Model.ConnectionString)) | ||
{ | ||
@T["Configured"] | ||
} | ||
else | ||
{ | ||
@T["Not Configured"] | ||
} | ||
</code> | ||
@if (!String.IsNullOrEmpty(Model.ConnectionString)) | ||
{ | ||
@T["Configured"] | ||
} | ||
else | ||
{ | ||
@T["Not Configured"] | ||
} | ||
</code> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="form-group row"> | ||
<label asp-for="ContainerName" class="col-sm-2 col-form-label">@T["Container Name"]</label> | ||
<div class="col-sm-10"> | ||
<code><input type="text" class="form-control-plaintext" value="@Model.ContainerName" /></code> | ||
<div class="form-group row"> | ||
<label asp-for="ContainerName" class="col-sm-2 col-form-label">@T["Container Name"]</label> | ||
<div class="col-sm-10"> | ||
<code><input type="text" class="form-control-plaintext" value="@Model.ContainerName" /></code> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="form-group row"> | ||
<label asp-for="BasePath" class="col-sm-2 col-form-label">@T["Base Path"]</label> | ||
<div class="col-sm-10"> | ||
<code><input type="text" class="form-control-plaintext" value="@Model.BasePath" /></code> | ||
<div class="form-group row"> | ||
<label asp-for="BasePath" class="col-sm-2 col-form-label">@T["Base Path"]</label> | ||
<div class="col-sm-10"> | ||
<code><input type="text" class="form-control-plaintext" value="@Model.BasePath" /></code> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<div class="custom-control custom-checkbox"> | ||
<input type="checkbox" class="custom-control-input" asp-for="CreateContainer" checked="@Model.CreateContainer" disabled /> | ||
<label class="custom-control-label" asp-for="CreateContainer">@T["Create Container"]</label> | ||
<span class="hint">@T["Whether a blob container is created on startup if it does not exist."]</span> | ||
<div class="form-group"> | ||
<div class="custom-control custom-checkbox"> | ||
<input type="checkbox" class="custom-control-input" asp-for="CreateContainer" checked="@Model.CreateContainer" disabled /> | ||
<label class="custom-control-label" asp-for="CreateContainer">@T["Create Container"]</label> | ||
<span class="hint">@T["Whether a blob container is created on startup if it does not exist."]</span> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
...rchardCore.Modules/OrchardCore.Microsoft.Authentication/Views/AzureADSettings.Edit.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
...e.Modules/OrchardCore.Microsoft.Authentication/Views/MicrosoftAccountSettings.Edit.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
src/OrchardCore.Modules/OrchardCore.Twitter/Views/TwitterSettings.Edit.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
src/OrchardCore.Modules/OrchardCore.Twitter/Views/TwitterSigninSettings.Edit.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.