mirror of https://github.com/docusealco/docuseal
parent
18bb57aa99
commit
b8fd5a77d4
@ -0,0 +1,4 @@
|
|||||||
|
<title>
|
||||||
|
DocuSeal | Open Source Document Filling and Signing
|
||||||
|
</title>
|
||||||
|
<%= render 'shared/meta' %>
|
||||||
@ -1 +1 @@
|
|||||||
<%= render 'shared/powered_by' %>
|
<%= render 'shared/powered_by', with_counter: local_assigns[:with_counter] %>
|
||||||
|
|||||||
@ -0,0 +1,3 @@
|
|||||||
|
<a href="<%= Docuseal::GITHUB_URL %>" target="_blank" class="inline">
|
||||||
|
<img alt="GitHub Repo stars" src="https://www.docuseal.co/github-badge.svg" style="height: 22px">
|
||||||
|
</a>
|
||||||
@ -1,4 +1,13 @@
|
|||||||
<div class="text-center px-2">
|
<div class="text-center px-2">
|
||||||
Powered by
|
<% if local_assigns[:with_counter] %>
|
||||||
|
<% count = Submitter.where.not(completed_at: nil).distinct.count(:submission_id) %>
|
||||||
|
<% if count > 1 %>
|
||||||
|
<b><%= count %></b> documents signed with
|
||||||
|
<% else %>
|
||||||
|
Powered by
|
||||||
|
<% end %>
|
||||||
|
<% else %>
|
||||||
|
Powered by
|
||||||
|
<% end %>
|
||||||
<a href="<%= Docuseal::PRODUCT_URL %>" class="underline"><%= Docuseal::PRODUCT_NAME %></a> - open source documents software
|
<a href="<%= Docuseal::PRODUCT_URL %>" class="underline"><%= Docuseal::PRODUCT_NAME %></a> - open source documents software
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -0,0 +1,2 @@
|
|||||||
|
<%= render 'shared/logo' %>
|
||||||
|
<span>DocuSeal</span>
|
||||||
Loading…
Reference in new issue