26 lines
1,014 B
Plaintext
26 lines
1,014 B
Plaintext
|
<h1><%=_('Add multiple contacts')%></h1>
|
||
|
<% if @flash["errors"] and not @flash["errors"].empty?%>
|
||
|
<%= _('Errors')%>
|
||
|
<ul>
|
||
|
<% @flash["errors"].each do |message| %>
|
||
|
<li><%= message %>
|
||
|
<% end %>
|
||
|
</ul>
|
||
|
<% end %>
|
||
|
<form action="<%=link_import_preview%>" enctype="multipart/form-data" method="post">
|
||
|
<%= radio_button("contact", "file_type", "1")%> <%= _('Comma-separated (CSV) file')%>
|
||
|
<%= radio_button("contact", "file_type", "2")%> <%= _('Tab-delimited text file')%>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th><label for="contact[data]"><%=_('Select file')%></label></th>
|
||
|
<td><input type="file" name="contact[data]"/></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan=2>
|
||
|
<input type="submit" value="<%=_('Import')%>"/>
|
||
|
<input type="button" value="<%= _('Back to contacts')%>" onclick="window.location='<%=link_contact_list%>'">
|
||
|
<input type="button" value="<%= _('Back to folders')%>" onclick="window.location='<%=link_main_index%>'">
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|