diff --git a/src/Yavsc/ApiControllers/Musical/DjProfileApiController.cs b/src/Yavsc/ApiControllers/Musical/DjProfileApiController.cs index 28559844..cb576870 100644 --- a/src/Yavsc/ApiControllers/Musical/DjProfileApiController.cs +++ b/src/Yavsc/ApiControllers/Musical/DjProfileApiController.cs @@ -7,7 +7,6 @@ namespace Yavsc.ApiControllers { public DjProfileApiController(ApplicationDbContext context) : base(context) { - } } } \ No newline at end of file diff --git a/src/Yavsc/Resources/Yavsc.YavscLocalisation.en.resx b/src/Yavsc/Resources/Yavsc.YavscLocalisation.en.resx index c995ef18..ba192cb4 100644 --- a/src/Yavsc/Resources/Yavsc.YavscLocalisation.en.resx +++ b/src/Yavsc/Resources/Yavsc.YavscLocalisation.en.resx @@ -785,4 +785,5 @@ Thanks. {0} - {2} <https://{3}> Instrumentation +Co-working diff --git a/src/Yavsc/Resources/Yavsc.YavscLocalisation.pt.resx b/src/Yavsc/Resources/Yavsc.YavscLocalisation.pt.resx index a9c90121..3295e42c 100644 --- a/src/Yavsc/Resources/Yavsc.YavscLocalisation.pt.resx +++ b/src/Yavsc/Resources/Yavsc.YavscLocalisation.pt.resx @@ -483,6 +483,6 @@ Conjunto de faturas: {5} Um pedido (de {0}) em cabeleireiro em casa acaba de ser validado criança Meches -Instrumentação - + Instrumentação + Parceria diff --git a/src/Yavsc/Resources/Yavsc.YavscLocalisation.resx b/src/Yavsc/Resources/Yavsc.YavscLocalisation.resx index fb971bc2..a2f673e4 100644 --- a/src/Yavsc/Resources/Yavsc.YavscLocalisation.resx +++ b/src/Yavsc/Resources/Yavsc.YavscLocalisation.resx @@ -503,5 +503,5 @@ Facture réglée: {5} Licencier Flux live Instrumentation - +Partenariat diff --git a/src/Yavsc/Views/FrontOffice/Yavsc.Models.Workflow.Profiles.FormationSettings.cshtml b/src/Yavsc/Views/FrontOffice/Yavsc.Models.Workflow.Profiles.FormationSettings.cshtml index 22caa830..67cd7586 100644 --- a/src/Yavsc/Views/FrontOffice/Yavsc.Models.Workflow.Profiles.FormationSettings.cshtml +++ b/src/Yavsc/Views/FrontOffice/Yavsc.Models.Workflow.Profiles.FormationSettings.cshtml @@ -1,26 +1,13 @@ -@model Yavsc.Models.Musical.Profiles.FormationSettings - - -@if (Model == null) { -

@SR["ENOFORMATIONSETTINGS"]

-} -@if (Model != null) { -
-@SR["Formation"] @Model.DisplayName -

@Model.Summary

- -

- - @foreach(var inst in Model.Instruments) { - @Html.DisplayNameFor(model => model.Tool) - } +@model Yavsc.Models.Workflow.Profiles.FormationSettings +@if (Model != null && Model.CoWorking != null) {
-
- @Html.DisplayNameFor(model => model.Tool) -
-
- @Html.DisplayFor(model => model.Tool) -
+
@SR["Partenariat"]
+
@Model.DisplayName
+
+
    + @foreach(var memb in Model.CoWorking) { +
  • @Html.Display("PerformerProfile","", "", memb.Performer)
  • + } +
-

}