podemos-info/participa2

View on GitHub
decidim-module-crowdfundings/app/views/decidim/crowdfundings/contributions/census_credit_card.html.erb

Summary

Maintainability
Test Coverage
<!DOCTYPE html>
<html>
  <head></head>
  <body>
    <%= form_tag @census[:action], method: :post, id: 'census-form' do %>
      <% @census[:fields].each do |key, value| %>
        <%= hidden_field_tag key, value %>
      <% end %>
    <% end %>

    <%= javascript_tag do %>
      if (window.location.hash == '#sent') {
        window.history.go(-1);
      } else {
        window.history.replaceState( {} , '', '#sent' );
        document.getElementById('census-form').submit();
      }
    <% end %>
  </body>
</html>