Skip to content

Instantly share code, notes, and snippets.

@crowdfundhq
Last active January 23, 2018 10:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crowdfundhq/fdffca0432574035265a99f7b4baedab to your computer and use it in GitHub Desktop.
Save crowdfundhq/fdffca0432574035265a99f7b4baedab to your computer and use it in GitHub Desktop.
{% if current_user %}
{% assign contributed = campaign.contributions | where: user_id: current_user.id | first %}
{% if contributed %}
Already contributed!
<script>
// Redirect back
window.location = '{{ request.referer }}'
</script>
{% else %}
Not contributed.
{% endif %}
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment