-
Notifications
You must be signed in to change notification settings - Fork 4
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 #5 from Kunstmaan/ga-dashboard-bugfix-ratelimit
fixed ratelimit bug
- Loading branch information
Showing
7 changed files
with
109 additions
and
18 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
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
19 changes: 19 additions & 0 deletions
19
Resources/views/GoogleAnalytics/accountSelection.html.twig
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,19 @@ | ||
{% extends 'KunstmaanAdminBundle:Default:layout.html.twig' %} | ||
|
||
{% block header %}{% endblock %} | ||
|
||
{% block content %} | ||
<form method="post" action=""> | ||
<h2>{{ 'dashboard.ga.setup.title' | trans }}</h2> | ||
<h3>{{ 'dashboard.ga.setup.account.title' | trans }}</h3> | ||
|
||
<select name="accounts" class="chzn-select"> | ||
{% for account in accounts %} | ||
<option value="{{ account.accountId }}">{{ account.accountName }}</option> | ||
{% endfor %} | ||
</select> | ||
<br/> | ||
<button class="btn btn-primary" type="submit">{{ 'form.save' | trans }}</button> | ||
</form> | ||
|
||
{% endblock %} |
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