14 lines
501 B
Plaintext
14 lines
501 B
Plaintext
|
|
|
|
<link href="/assets/greeting_card/greeting_card.css" media="screen" rel="stylesheet">
|
|
<div class="form-horizontal">
|
|
<h2>
|
|
<% text = GreetingCardAcknowledgement.first.content[I18n.locale] rescue t('greeting_card.thank_text')
|
|
text = t('greeting_card.thank_text') if text.to_s.empty?
|
|
%>
|
|
<%= text.html_safe %>
|
|
<div class="form-actions">
|
|
<a class="btn" href="<%= OrbitHelper.request.path_info %>"><%=t('greeting_card.go_back')%></a>
|
|
</div>
|
|
</h2>
|
|
</div> |