mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
14 lines
483 B
Plaintext
14 lines
483 B
Plaintext
@using Orchard.Utility.Extensions
|
|
|
|
@{ Layout.Title = T("Migrate Taxonomies").ToString(); }
|
|
|
|
@using (Html.BeginFormAntiForgeryPost()) {
|
|
Html.ValidationSummary();
|
|
<fieldset>
|
|
<legend>@T("Migrating Taxonomies:")</legend>
|
|
<span class="hint">@T("This migration step will convert the Contrib.Taxonomies content items to Orchard.Taxonomies.")</span>
|
|
</fieldset>
|
|
<fieldset>
|
|
<button type="submit">@T("Migrate")</button>
|
|
</fieldset>
|
|
} |