Skip to content
Snippets Groups Projects
Verified Commit b7cbfbb1 authored by Florian Azizian's avatar Florian Azizian
Browse files

FEAT #7737 starter front admin templates

parent 9cda8abd
No related branches found
No related tags found
No related merge requests found
...@@ -46,9 +46,12 @@ ...@@ -46,9 +46,12 @@
<div class="col-sm-12"> <div class="col-sm-12">
<mat-form-field> <mat-form-field>
<mat-select id="template_target" name="template_target" title="{{lang.templateTarget}}" placeholder="{{lang.templateTarget}}" [(ngModel)]="template.template_target"> <mat-select id="template_target" name="template_target" title="{{lang.templateTarget}}" placeholder="{{lang.templateTarget}}" [(ngModel)]="template.template_target">
<!-- <mat-option *ngFor="let action of actionPagesList.actionsPageList" [value]="action.name"> <mat-option value="">{{lang.noTarget}}</mat-option>
{{action.label}} <mat-option value="attachments">{{lang.attachments}}</mat-option>
</mat-option> --> <mat-option value="notifications">{{lang.notifications}}</mat-option>
<mat-option value="doctypes">{{lang.doctypes}}</mat-option>
<mat-option value="notes">{{lang.notes}}</mat-option>
<mat-option value="sendmail">{{lang.sendmail}}</mat-option>
</mat-select> </mat-select>
</mat-form-field> </mat-form-field>
</div> </div>
...@@ -56,9 +59,9 @@ ...@@ -56,9 +59,9 @@
<div class="form-group"> <div class="form-group">
<div class="col-sm-12"> <div class="col-sm-12">
<mat-radio-group required name="template_type" [(ngModel)]="template.template_type"> <mat-radio-group required name="template_type" [(ngModel)]="template.template_type">
<mat-radio-button color="primary" name="template_type" [checked]="template.template_type=='OFFICE'" value="OFFICE">{{lang.office}}</mat-radio-button> <mat-radio-button color="primary" name="template_type" value="OFFICE" [checked]="template.template_type=='OFFICE'" *ngIf="template.template_target == 'attachments' || template.template_target == ''">{{lang.office}}</mat-radio-button>
<mat-radio-button color="primary" name="template_type" [checked]="template.template_type=='HTML'" (click)="initMce()" value="HTML">{{lang.html}}</mat-radio-button> <mat-radio-button color="primary" name="template_type" value="HTML" [checked]="template.template_type=='HTML'" *ngIf="template.template_target == 'sendmail' || template.template_target == 'doctypes' || template.template_target == 'notifications' || template.template_target == ''" (click)="initMce()">{{lang.html}}</mat-radio-button>
<mat-radio-button color="primary" name="template_type" [checked]="template.template_type=='TXT'" value="TXT">{{lang.txt}}</mat-radio-button> <mat-radio-button color="primary" name="template_type" value="TXT" [checked]="template.template_type=='TXT'" *ngIf="template.template_target == 'sendmail' || template.template_target == 'notes' || template.template_target == ''">{{lang.txt}}</mat-radio-button>
</mat-radio-group> </mat-radio-group>
</div> </div>
</div> </div>
...@@ -70,7 +73,7 @@ ...@@ -70,7 +73,7 @@
<div class="form-group" *ngIf="template.template_type=='TXT'"> <div class="form-group" *ngIf="template.template_type=='TXT'">
<div class="col-sm-12"> <div class="col-sm-12">
<mat-form-field> <mat-form-field>
<textarea matInput [(ngModel)]="template.templateTxt" name="templateTxt" id="templateTxt" placeholder="{{lang.contentTxtTemplate}}" <textarea matInput [(ngModel)]="template.template_content" name="templateTxt" id="templateTxt" placeholder="{{lang.contentTxtTemplate}}"
title="{{lang.contentTxtTemplate}}" matTextareaAutosize matAutosizeMinRows="5" title="{{lang.contentTxtTemplate}}" matTextareaAutosize matAutosizeMinRows="5"
matAutosizeMaxRows="5"> matAutosizeMaxRows="5">
</textarea> </textarea>
...@@ -80,7 +83,7 @@ ...@@ -80,7 +83,7 @@
<div class="form-group" *ngIf="template.template_type=='HTML'"> <div class="form-group" *ngIf="template.template_type=='HTML'">
<div class="col-sm-12"> <div class="col-sm-12">
<div id="html_mode" style="display: block; width:100%;"> <div id="html_mode" style="display: block; width:100%;">
<textarea [(ngModel)]="template.templateHtml" name="templateHtml" id="templateHtml" style="width:100%" rows="15" cols="60"></textarea> <textarea [(ngModel)]="template.template_content" name="templateHtml" id="templateHtml" style="width:100%" rows="15" cols="60"></textarea>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -530,5 +530,7 @@ export const LANG_EN = { ...@@ -530,5 +530,7 @@ export const LANG_EN = {
"txt" : "Texte", "txt" : "Texte",
"contentTxtTemplate" : "Content text template", "contentTxtTemplate" : "Content text template",
"contentHtmlTemplate" : "Content html template", "contentHtmlTemplate" : "Content html template",
"noTarget" : "No target",
"doctypes" : "Document types",
}; };
...@@ -551,5 +551,7 @@ export const LANG_FR = { ...@@ -551,5 +551,7 @@ export const LANG_FR = {
"txt" : "Texte", "txt" : "Texte",
"contentTxtTemplate" : "Contenu du modèle texte", "contentTxtTemplate" : "Contenu du modèle texte",
"contentHtmlTemplate" : "Contenu du modèle html", "contentHtmlTemplate" : "Contenu du modèle html",
"noTarget" : "Pas de cible",
"doctypes" : "Types de documents",
}; };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment