Add better instruction on how to customize the theme

This commit is contained in:
nicolas.dorier
2018-11-17 12:43:11 +09:00
parent 300d912331
commit 4dccd0c733
5 changed files with 14 additions and 6 deletions

View File

@@ -26,12 +26,15 @@ namespace BTCPayServer.Models.AppViewModels
[Required]
[MaxLength(30)]
[Display(Name = "Text to display on each buttons for items with a specific price")]
public string ButtonText { get; set; }
[Required]
[MaxLength(30)]
[Display(Name = "Text to display on buttons next to the input allowing the user to enter a custom amount")]
public string CustomButtonText { get; set; }
[MaxLength(500)]
[Display(Name = "Custom bootstrap CSS file")]
public string CustomCSSLink { get; set; }
}
}