21 lines
879 B
Text
21 lines
879 B
Text
<%- # License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
|
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE -%>
|
|
<!-- settings/custom_tracking -->
|
|
|
|
<header class='pane-header'>
|
|
<h3>Custom Tracking Code</h3>
|
|
</header>
|
|
|
|
<div class='pane-inner'>
|
|
<p class='pastelBox--yellow u-padding--10 u-marginBottom--20'>Place any Google Analytics or custom tracking code here for tracking donations. After a successful donation this script will fire.</p>
|
|
|
|
<form autosubmit method='put' action='/nonprofits/<%= @nonprofit.id %>.json'>
|
|
|
|
<label class='u-block u-marginBottom--10'>Tracking Code</label>
|
|
<textarea rows='10' name='nonprofit[tracking_script]'><%= raw(@nonprofit.tracking_script).html_safe %></textarea><br>
|
|
|
|
<button type='submit' class='button u-marginTop--10' data-loading='Saving...'>
|
|
Save</button>
|
|
</form>
|
|
|
|
</div>
|