-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#212 notify project watcher of tag activity
- Loading branch information
1 parent
27904b3
commit b27819b
Showing
4 changed files
with
71 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{% extends "email/base.html" %} | ||
{% block mainContent%} | ||
Hello {{ you.getUserInfo.screenName }}<br> | ||
<a href="{{SITE_HOME}}{{ user.get_view_link }}" style="color: #08C;text-decoration: none;cursor: auto;"> | ||
{{ user.getUserInfo.screenName }} | ||
</a> | ||
added the tag <strong>{{ tag }}</strong> to project | ||
<a href="{{SITE_HOME}}/project/{{ project.id }}">{{ project.name }}</a> | ||
project.<br><br> | ||
|
||
We will let you know if there are any updates. | ||
|
||
<br><br> | ||
{% include 'email/include/email_settings_notice.html' %} | ||
|
||
{% endblock mainContent%} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{% extends "email/base.html" %} | ||
{% block mainContent%} | ||
Hello {{ you.getUserInfo.screenName }}<br> | ||
<a href="{{SITE_HOME}}{{ user.get_view_link }}" style="color: #08C;text-decoration: none;cursor: auto;"> | ||
{{ user.getUserInfo.screenName }} | ||
</a> | ||
removed tag <strong>{{ tag }}</strong> from project | ||
<a href="{{SITE_HOME}}/project/{{ project.id }}">{{ project.name }}</a> | ||
project.<br><br> | ||
|
||
We will let you know if there are any updates. | ||
|
||
<br><br> | ||
{% include 'email/include/email_settings_notice.html' %} | ||
|
||
{% endblock mainContent%} | ||
|