-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor mailnotification templates to make them overrideable with Br…
…owserViews or jbot
- Loading branch information
Showing
10 changed files
with
344 additions
and
344 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
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
Empty file.
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,34 @@ | ||
<configure xmlns="http://namespaces.zope.org/zope" | ||
xmlns:plone="http://namespaces.plone.org/plone" | ||
xmlns:browser="http://namespaces.zope.org/browser" | ||
xmlns:zcml="http://namespaces.zope.org/zcml"> | ||
|
||
<browser:page | ||
for="*" | ||
name="booking_cancelled" | ||
template="booking_cancelled.pt" | ||
permission="zope2.View" | ||
layer="..interfaces.IOrdersExtensionLayer" /> | ||
|
||
<browser:page | ||
for="*" | ||
name="booking_reserved_to_ordered" | ||
template="booking_reserved_to_ordered.pt" | ||
permission="zope2.View" | ||
layer="..interfaces.IOrdersExtensionLayer" /> | ||
|
||
<browser:page | ||
for="*" | ||
name="order_success" | ||
template="order_success.pt" | ||
permission="zope2.View" | ||
layer="..interfaces.IOrdersExtensionLayer" /> | ||
|
||
<browser:page | ||
for="*" | ||
name="stock_threshold_reached" | ||
template="stock_threshold_reached.pt" | ||
permission="zope2.View" | ||
layer="..interfaces.IOrdersExtensionLayer" /> | ||
|
||
</configure> |
Oops, something went wrong.