Browse Source
Merge pull request #608 from colinin/add-missing-template-files
fix: add missing template files
pull/645/head
yx lin
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with
89 additions and
0 deletions
-
aspnet-core/modules/common/LINGYUN.Abp.Notifications.Common/LINGYUN/Abp/Notifications/Emailing/Templates/ExceptionNotifier/en.tpl
-
aspnet-core/modules/common/LINGYUN.Abp.Notifications.Common/LINGYUN/Abp/Notifications/Emailing/Templates/ExceptionNotifier/zh-Hans.tpl
-
aspnet-core/modules/common/LINGYUN.Abp.Notifications.Common/LINGYUN/Abp/Notifications/Emailing/Templates/NewTenantRegisterd/en.tpl
-
aspnet-core/modules/common/LINGYUN.Abp.Notifications.Common/LINGYUN/Abp/Notifications/Emailing/Templates/NewTenantRegisterd/zh-Hans.tpl
-
aspnet-core/modules/common/LINGYUN.Abp.Notifications.Common/LINGYUN/Abp/Notifications/Emailing/Templates/WelcomeToApplication/en.tpl
-
aspnet-core/modules/common/LINGYUN.Abp.Notifications.Common/LINGYUN/Abp/Notifications/Emailing/Templates/WelcomeToApplication/zh-Hans.tpl
-
aspnet-core/modules/common/LINGYUN.Abp.Notifications.Common/LINGYUN/Abp/Notifications/Emailing/Templates/layout.tpl
|
|
|
@ -0,0 +1,37 @@ |
|
|
|
<table width="95%" cellpadding="0" cellspacing="0" style="font-size: 11pt; font-family: Tahoma, Arial, Helvetica, sans-serif"> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<br /> <b><font color="#0B610B">{{ model.header }}</font></b> |
|
|
|
<hr size="2" width="100%" align="center" /> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<ul> |
|
|
|
<li>Type : {{ model.type }}</li> |
|
|
|
<li>Message : {{ model.message }}</li> |
|
|
|
<li>Alarm level : {{ model.loglevel }}</li> |
|
|
|
<li>TriggerTime : {{ creationTime }}</li> |
|
|
|
</ul> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<b><font color="#0B610B">Stack trace</font></b> |
|
|
|
<hr size="2" width="100%" align="center" /> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<pre style="font-size: 11pt; font-family: Tahoma, Arial, Helvetica, sans-serif">{{ model.stackTrace }}</pre> |
|
|
|
<br /> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<br /> |
|
|
|
<b style="float: right"><font color="#0B610B">{{ model.footer }}</font></b> |
|
|
|
<hr size="2" width="100%" align="center" /> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
</table> |
|
|
|
@ -0,0 +1,38 @@ |
|
|
|
<table width="95%" cellpadding="0" cellspacing="0" style="font-size: 11pt; font-family: Tahoma, Arial, Helvetica, sans-serif"> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<br /> <b><font color="#0B610B">{{ model.header }}</font></b> |
|
|
|
<hr size="2" width="100%" align="center" /> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<ul> |
|
|
|
<li>异常类型 : {{ model.title }}</li> |
|
|
|
<li>异常信息 : {{ model.message }}</li> |
|
|
|
<li>告警级别 : {{ model.loglevel }}</li> |
|
|
|
<!-- 全局变量 creationTime --> |
|
|
|
<li>触发时间 : {{ creationTime }}</li> |
|
|
|
</ul> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<b><font color="#0B610B">异常堆栈</font></b> |
|
|
|
<hr size="2" width="100%" align="center" /> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<pre style="font-size: 11pt; font-family: Tahoma, Arial, Helvetica, sans-serif">{{ model.stackTrace }}</pre> |
|
|
|
<br /> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
<br /> |
|
|
|
<b style="float: right"><font color="#0B610B">{{ model.footer }}</font></b> |
|
|
|
<hr size="2" width="100%" align="center" /> |
|
|
|
</td> |
|
|
|
</tr> |
|
|
|
</table> |
|
|
|
@ -0,0 +1 @@ |
|
|
|
<h3>A new tenant {{model.name}} has been created.</h3> |
|
|
|
@ -0,0 +1 @@ |
|
|
|
<h3>一个新的租户 {{model.name}} 已建立,切换租户开始! </h3> |
|
|
|
@ -0,0 +1 @@ |
|
|
|
<h3>{{model.name}}, Welcome to my application!</h3> |
|
|
|
@ -0,0 +1 @@ |
|
|
|
<h3>{{model.name}}, 欢迎您的加入!</h3> |
|
|
|
@ -0,0 +1,10 @@ |
|
|
|
<!DOCTYPE html> |
|
|
|
<html lang="en"> |
|
|
|
<head> |
|
|
|
<meta charset="UTF-8"> |
|
|
|
<title>{{title}}</title> |
|
|
|
</head> |
|
|
|
<body leftmargin="8" marginwidth="0" topmargin="8" marginheight="4" offset="0"> |
|
|
|
{{content}} |
|
|
|
</body> |
|
|
|
</html> |