instiki/app/views/file/file.rhtml

22 lines
562 B
Plaintext
Raw Normal View History

2005-01-22 19:38:16 +01:00
<%
@title = "Upload #{@file_name}"
@hide_navigatio = false
%>
<p>
2005-01-22 19:38:16 +01:00
<%= form_tag({}, {:multipart => true}) %>
<p>
File to upload:
<br/>
<input type="file" name="file" size="40" />
2005-01-22 19:38:16 +01:00
</p>
<p>
<input type="submit" value="Update" /> as
2005-01-22 19:38:16 +01:00
<input type="text" name="author" id="authorName" value="<%= @author %>"
onClick="this.value == 'AnonymousCoward' ? this.value = '' : true" />
2005-01-22 19:38:16 +01:00
<% if @page %>
| <a href="../file/">Cancel</a> <small>(unlocks page)</small>
<% end %>
</p>
<%= end_form_tag %>
</p>