Archive: ComponentOwl Rails app, DB backups, go redirect script
This commit is contained in:
34
app/views/support/index.html.erb
Normal file
34
app/views/support/index.html.erb
Normal file
@@ -0,0 +1,34 @@
|
||||
<div class="support-content">
|
||||
|
||||
<h1>Help & Support</h1>
|
||||
|
||||
<div class="left">
|
||||
<p><%= t("txt.support.contact_info_1") %></p>
|
||||
<p><%= t("txt.support.contact_info_2") %></p>
|
||||
|
||||
<div class="contact-form-ct">
|
||||
<div class="contact-form-wrap">
|
||||
<%= contact_form(:show_product_select => false) %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
<p class="note"><%= t("txt.support.contact_info_3") %></p>
|
||||
</div>
|
||||
|
||||
<div class="right">
|
||||
<% @products.each do |product| %>
|
||||
<h2><%= product.name %></h2>
|
||||
<p class="guide"><strong><%= link_to_new_window "See Quick Start Guide", quick_start_guide_path(product) %></strong></p>
|
||||
<p class="documentation"><strong><%= link_to_new_window "See Documentation", documentation_path(product) %></strong></p>
|
||||
<p class="reference"><strong><%= link_to_new_window "See Class Reference", class_reference_path(product) %></strong></p>
|
||||
<% if product == featured_product %><p class="stackoverflow"><strong><%= link_to_new_window "Better ListView on StackOverflow", "
|
||||
http://stackoverflow.com/questions/tagged/better-listview" %></strong></p><% end %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<% javascript_tag do -%>
|
||||
document.getElementById("support_request_name").focus();
|
||||
<% end %>
|
||||
Reference in New Issue
Block a user