-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from netfeld/netfeld
Netfeld
- Loading branch information
Showing
4 changed files
with
47 additions
and
19 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
39 changes: 23 additions & 16 deletions
39
copy_this/modules/agcookiecompliance/application/views/tpl/widget/cookieinfos.tpl
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,23 +1,30 @@ | ||
[{assign var=cookies value=$oViewConf->getComplianceCookies()}] | ||
<div class="table-responsive"> | ||
<table class="table table-striped"> | ||
<thead> | ||
[{assign var=cookies_by_cat value=$oViewConf->getComplianceCookiesByCategory()}] | ||
|
||
<div class="cc-cookie-infos"> | ||
[{foreach from=$cookies_by_cat key=cat item=cookies}] | ||
<h3>[{oxmultilang ident="COOKIE_COMPLIANCE_CATEGORY_"|cat:$cat}]</h3> | ||
<div class="table-responsive"> | ||
<table class="table table-striped"> | ||
<thead> | ||
<tr> | ||
<td>[{oxmultilang ident="COOKIE_COMPLIANCE_LIST_NAME"}]</td> | ||
<td>[{oxmultilang ident="COOKIE_COMPLIANCE_LIST_SOURCE"}]</td> | ||
<td>[{oxmultilang ident="COOKIE_COMPLIANCE_LIST_PURPOSE"}]</td> | ||
<td>[{oxmultilang ident="COOKIE_COMPLIANCE_LIST_RETENTION"}]</td> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
</thead> | ||
<tbody> | ||
[{foreach from=$cookies item=cookie}] | ||
<tr> | ||
<td>[{$cookie->compliancecookies__oxcookie->value}]</td> | ||
<td>[{$cookie->compliancecookies__oxservice->value}]</td> | ||
<td>[{$cookie->compliancecookies__oxdescription->value}]</td> | ||
<td>[{$cookie->compliancecookies__oxretention->value}]</td> | ||
</tr> | ||
[{/foreach}] | ||
</tbody> | ||
</table> | ||
</div> | ||
<tr> | ||
<td>[{$cookie->compliancecookies__oxcookie->value}]</td> | ||
<td>[{$cookie->compliancecookies__oxcookie->value}]</td> | ||
<td>[{$cookie->compliancecookies__oxservice->value}]</td> | ||
<td>[{$cookie->compliancecookies__oxdescription->value}]</td> | ||
<td>[{$cookie->compliancecookies__oxretention->value}]</td> | ||
</tr> | ||
[{/foreach}] | ||
</tbody> | ||
</table> | ||
</div> | ||
[{/foreach}] | ||
</div> |
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