Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
R
red-ci-cd
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
red-group-test
red-ci-cd
Commits
31daeaa9
Commit
31daeaa9
authored
Oct 02, 2019
by
Gladys Forte
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
email templates
parent
a2723c63
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
50 additions
and
54 deletions
+50
-54
app/applicationlayer/cms/auto_email/cancel.py
app/applicationlayer/cms/auto_email/cancel.py
+0
-0
app/applicationlayer/cms/auto_email/reminder.py
app/applicationlayer/cms/auto_email/reminder.py
+0
-0
app/entities/migrations/0012_auto_20191002_1023.py
app/entities/migrations/0012_auto_20191002_1023.py
+33
-0
app/entities/models.py
app/entities/models.py
+0
-30
app/helper/email_service/templates/RMS-ACTIONREQUIRED-VENDOR.html
...er/email_service/templates/RMS-ACTIONREQUIRED-VENDOR.html
+1
-1
app/helper/email_service/templates/RMS-ACTIONREQUIRED.html
app/helper/email_service/templates/RMS-ACTIONREQUIRED.html
+2
-2
app/helper/email_service/templates/RMS-ADMINRESET.html
app/helper/email_service/templates/RMS-ADMINRESET.html
+1
-4
app/helper/email_service/templates/RMS-CRACCEPTED.html
app/helper/email_service/templates/RMS-CRACCEPTED.html
+1
-1
app/helper/email_service/templates/RMS-CRACKNOWLEDGE.html
app/helper/email_service/templates/RMS-CRACKNOWLEDGE.html
+1
-1
app/helper/email_service/templates/RMS-CRAPPROVED.html
app/helper/email_service/templates/RMS-CRAPPROVED.html
+1
-1
app/helper/email_service/templates/RMS-CRCANCELLED.html
app/helper/email_service/templates/RMS-CRCANCELLED.html
+1
-1
app/helper/email_service/templates/RMS-CRCOMPLETED.html
app/helper/email_service/templates/RMS-CRCOMPLETED.html
+1
-1
app/helper/email_service/templates/RMS-CROVERDUE.html
app/helper/email_service/templates/RMS-CROVERDUE.html
+1
-1
app/helper/email_service/templates/RMS-CRREJECTED-VENDOR.html
...helper/email_service/templates/RMS-CRREJECTED-VENDOR.html
+1
-1
app/helper/email_service/templates/RMS-CRREJECTED.html
app/helper/email_service/templates/RMS-CRREJECTED.html
+1
-1
app/helper/email_service/templates/RMS-NEWUSER.html
app/helper/email_service/templates/RMS-NEWUSER.html
+1
-5
app/helper/email_service/templates/RMS-PASSWORD.html
app/helper/email_service/templates/RMS-PASSWORD.html
+1
-1
app/helper/email_service/templates/RMS-REMINDER-APPROVER.html
...helper/email_service/templates/RMS-REMINDER-APPROVER.html
+1
-1
app/helper/email_service/templates/RMS-REMINDER-REQUESTOR.html
...elper/email_service/templates/RMS-REMINDER-REQUESTOR.html
+2
-2
No files found.
app/applicationlayer/cms/auto_email/cancel.py
0 → 100644
View file @
31daeaa9
app/applicationlayer/cms/auto_email/reminder.py
0 → 100644
View file @
31daeaa9
app/entities/migrations/0012_auto_20191002_1023.py
0 → 100644
View file @
31daeaa9
# Generated by Django 2.2 on 2019-10-02 10:23
from
django.db
import
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'entities'
,
'0011_auto_20191001_1556'
),
]
operations
=
[
migrations
.
RemoveField
(
model_name
=
'changerequestformapprovers'
,
name
=
'tmp_approver'
,
),
migrations
.
RemoveField
(
model_name
=
'changerequestformattachments'
,
name
=
'tmp_attach'
,
),
migrations
.
RemoveField
(
model_name
=
'changerequestformdetails'
,
name
=
'tmp_detail'
,
),
migrations
.
RemoveField
(
model_name
=
'changerequestformheader'
,
name
=
'old_form_code'
,
),
migrations
.
RemoveField
(
model_name
=
'changerequestformstakeholders'
,
name
=
'tmp_stake'
,
),
]
app/entities/models.py
View file @
31daeaa9
...
@@ -695,13 +695,8 @@ class ChangeRequestFormHeader(BaseHeader):
...
@@ -695,13 +695,8 @@ class ChangeRequestFormHeader(BaseHeader):
max_length
=
255
,
max_length
=
255
,
null
=
True
,
null
=
True
,
blank
=
True
)
blank
=
True
)
old_form_code
=
models
.
CharField
(
max_length
=
255
,
null
=
True
,
blank
=
True
)
requested_to_template_id
=
models
.
CharField
(
requested_to_template_id
=
models
.
CharField
(
max_length
=
255
)
max_length
=
255
)
requested_to_target_date
=
models
.
DateTimeField
(
requested_to_target_date
=
models
.
DateTimeField
(
blank
=
True
,
blank
=
True
,
null
=
True
)
null
=
True
)
...
@@ -745,12 +740,6 @@ class ChangeRequestFormApprovers(BaseApprover):
...
@@ -745,12 +740,6 @@ class ChangeRequestFormApprovers(BaseApprover):
date_sent
=
models
.
DateTimeField
(
date_sent
=
models
.
DateTimeField
(
blank
=
True
,
blank
=
True
,
null
=
True
)
null
=
True
)
tmp_approver
=
models
.
ForeignKey
(
ChangeRequestTemplateApprovers
,
null
=
True
,
blank
=
True
,
on_delete
=
models
.
PROTECT
,
to_field
=
'code'
)
class
Meta
:
class
Meta
:
db_table
=
'change_request_form_approvers'
db_table
=
'change_request_form_approvers'
...
@@ -777,12 +766,6 @@ class ChangeRequestFormDetails(BaseDetails):
...
@@ -777,12 +766,6 @@ class ChangeRequestFormDetails(BaseDetails):
on_delete
=
models
.
PROTECT
,
on_delete
=
models
.
PROTECT
,
to_field
=
'form_code'
,
to_field
=
'form_code'
,
related_name
=
'frm_details'
)
related_name
=
'frm_details'
)
tmp_detail
=
models
.
ForeignKey
(
ChangeRequestTemplateDetails
,
null
=
True
,
blank
=
True
,
on_delete
=
models
.
PROTECT
,
to_field
=
'code'
)
class
Meta
:
class
Meta
:
db_table
=
'change_request_form_details'
db_table
=
'change_request_form_details'
...
@@ -812,12 +795,6 @@ class ChangeRequestFormStakeHolders(BaseStakeholder):
...
@@ -812,12 +795,6 @@ class ChangeRequestFormStakeHolders(BaseStakeholder):
date_added
=
models
.
DateTimeField
(
date_added
=
models
.
DateTimeField
(
blank
=
True
,
blank
=
True
,
null
=
True
)
null
=
True
)
tmp_stake
=
models
.
ForeignKey
(
ChangeRequestTemplateStakeHolders
,
null
=
True
,
blank
=
True
,
on_delete
=
models
.
PROTECT
,
to_field
=
'code'
)
class
Meta
:
class
Meta
:
db_table
=
'change_request_form_stakeholders'
db_table
=
'change_request_form_stakeholders'
...
@@ -851,13 +828,6 @@ class ChangeRequestFormAttachments(BaseAttachment):
...
@@ -851,13 +828,6 @@ class ChangeRequestFormAttachments(BaseAttachment):
blank
=
True
,
blank
=
True
,
null
=
True
null
=
True
)
)
tmp_attach
=
models
.
ForeignKey
(
ChangeRequestTemplateAttachments
,
null
=
True
,
blank
=
True
,
related_name
=
"template_attachments"
,
on_delete
=
models
.
PROTECT
,
to_field
=
'code'
)
class
Meta
:
class
Meta
:
db_table
=
'change_request_form_attachments'
db_table
=
'change_request_form_attachments'
...
...
app/helper/email_service/templates/RMS-ACTIONREQUIRED-VENDOR.html
View file @
31daeaa9
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-ACTIONREQUIRED.html
View file @
31daeaa9
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-ADMINRESET.html
View file @
31daeaa9
...
@@ -5,9 +5,6 @@
...
@@ -5,9 +5,6 @@
</head>
</head>
<body
style=
"font-family: arial;"
>
<body
style=
"font-family: arial;"
>
<div
style=
"max-width:100px!important;"
>
<img
src=
"https://s18.directupload.net/images/190807/wjwrxx5i.jpg"
/>
</div>
<h3>
Resource Management System
(
RMS
)
</h3>
<h3>
Resource Management System
(
RMS
)
</h3>
<h3
style=
"color:#888888;"
>
Reset Password
</h3><br>
<h3
style=
"color:#888888;"
>
Reset Password
</h3><br>
...
@@ -24,7 +21,7 @@
...
@@ -24,7 +21,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-CRACCEPTED.html
View file @
31daeaa9
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-CRACKNOWLEDGE.html
View file @
31daeaa9
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-CRAPPROVED.html
View file @
31daeaa9
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-CRCANCELLED.html
View file @
31daeaa9
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-CRCOMPLETED.html
View file @
31daeaa9
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-CROVERDUE.html
View file @
31daeaa9
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-CRREJECTED-VENDOR.html
View file @
31daeaa9
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-CRREJECTED.html
View file @
31daeaa9
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-NEWUSER.html
View file @
31daeaa9
...
@@ -5,10 +5,6 @@
...
@@ -5,10 +5,6 @@
</head>
</head>
<body
style=
"font-family: arial;"
>
<body
style=
"font-family: arial;"
>
<div
style=
"max-width:100px!important;"
>
<img
src=
"https://s18.directupload.net/images/190807/wjwrxx5i.jpg"
/>
</div>
<h3>
Resource Management System
(
RMS
)
</h3>
<h3>
Resource Management System
(
RMS
)
</h3>
<h3
style=
"color:#888888;"
>
New User Created
</h3><br>
<h3
style=
"color:#888888;"
>
New User Created
</h3><br>
...
@@ -24,7 +20,7 @@
...
@@ -24,7 +20,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-PASSWORD.html
View file @
31daeaa9
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-REMINDER-APPROVER.html
View file @
31daeaa9
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
app/helper/email_service/templates/RMS-REMINDER-REQUESTOR.html
View file @
31daeaa9
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
<p>
RMS Team
</p><br><br>
<p>
RMS Team
</p><br><br>
<p>
Powered by
</p>
<p>
Powered by
</p>
<img
src=
"https://s
18.directupload.net/images/190807/jaewp4nx.png"
width=
"120px"
/>
<img
src=
"https://s
3-ap-southeast-1.amazonaws.com/oneberry/img/logo_oneberry.png"
class=
"img-responsive"
style=
"width:150px;height:auto;"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment