-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] fixed some problems after initial migration
temp commit updated translation
- Loading branch information
1 parent
f458e27
commit e74ac93
Showing
10 changed files
with
216 additions
and
288 deletions.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,37 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
|
||
<record id="email_template_id" model="mail.template"> | ||
<field name="name">Email | ||
Template for Meeting | ||
</field> | ||
<field name="email_from">{{object.user_id_meeting | ||
or ''}} | ||
</field> | ||
<field name="subject">{{object.datetime_meeting or ''}}</field> | ||
<field name="model_id" ref="project_scrum.model_project_scrum_meeting" /> | ||
<field name="auto_delete" eval="True" /> | ||
<field name="email_to">{{object.user_id_meeting | ||
or ''}} | ||
</field> | ||
<field name="body_html"> | ||
<div | ||
<record id="email_template_id" model="mail.template"> | ||
<field name="name">Email Template for Meeting</field> | ||
<field name="email_from">{{object.user_id_meeting or ''}}</field> | ||
<field name="subject">{{object.datetime_meeting or ''}}</field> | ||
<field name="model_id" ref="project_scrum.model_project_scrum_meeting" /> | ||
<field name="auto_delete" eval="True" /> | ||
<field name="email_to">{{object.user_id_meeting or ''}}</field> | ||
<field name="body_html" type="html"> | ||
<div | ||
style="font-family: 'Lucica Grande', Ubuntu, Arial, Verdana, sans-serif; font-size: 16px; color: rgb(34, 34, 34); background-color: rgb(255, 255, 255); " | ||
> | ||
<p>Name: <t t-out="object.user_id_meeting" /></p> | ||
<p>Date: <t t-out="object.datetime_meeting" /></p> <br /> | ||
<p | ||
<p>Name: <t t-out="object.user_id_meeting" /></p> | ||
<p>Date: <t t-out="object.datetime_meeting" /></p> <br /> | ||
<p | ||
style="color:blue; font-size:14" | ||
> What did you do since the last meeting?</p> | ||
<t t-out="object.question_yesterday" /> <br /><br /> | ||
<p | ||
<t t-out="object.question_yesterday" /> <br /><br /> | ||
<p | ||
style="color:blue; font-size:14" | ||
>What do you plan to do till the next meeting?</p> | ||
<t t-out="object.question_today" /> <br /><br /> | ||
<p style="color:blue; font-size:14">Are there anything blocking you?</p> | ||
<t t-out="object.question_blocks" /> <br /><br /> | ||
</div> | ||
</field> | ||
</record> | ||
|
||
<t t-out="object.question_today" /> <br /><br /> | ||
<p | ||
style="color:blue; font-size:14" | ||
>Are there anything blocking you?</p> | ||
<t t-out="object.question_blocks" /> <br /><br /> | ||
</div> | ||
</field> | ||
</record> | ||
</odoo> |
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