aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/subSilver/template/posting_attach_body.html
blob: 243428209a9dcb7a3a2f55dbe578b652957edec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!-- $Id$ -->

	<tr>
		<th colspan="2" height="28">{L_ADD_ATTACHMENT}</th>
	</tr>
	<tr>
		<td class="row3" colspan="2"><span class="gensmall">{L_ADD_ATTACHMENT_EXPLAIN}</span></td>
	</tr>

	<tr> 
		<td class="row1"><b class="genmed">{L_FILENAME}</b></td> 
	    <td class="row2"><input class="post" type="file" name="fileupload" size="40" maxlength="{FILESIZE}" value="{FILENAME}" /></td> 
	</tr> 
	<tr> 
		<td class="row1"><b class="genmed">{L_FILE_COMMENT}</b></td> 
	    <td class="row2"><textarea class="post" name="filecomment" rows="3" cols="35" wrap="virtual" size="40">{FILE_COMMENT}</textarea>&nbsp;
		<input class="btnlite" type="submit" name="add_file" value="{L_ADD_FILE}" /></td> 
	</tr> 

	<!-- IF S_HAS_ATTACHMENTS -->
	<tr>
		<th colspan="2" height="28">{L_POSTED_ATTACHMENTS}</th>
	</tr>

		<!-- BEGIN attach_row -->
		<tr> 
			<td class="row1"><b class="genmed">{L_FILENAME}</b></td>
			<td class="row2"><a class="genmed" href="{attach_row.U_VIEW_ATTACHMENT}" target="_blank">{attach_row.FILENAME}</a></td> 
		</tr>
   		<tr> 
			<td class="row1"><b class="genmed">{L_FILE_COMMENT}</b></td> 
			<td class="row2"><textarea class="post" name="comment_list[{attach_row.ASSOC_INDEX}]" rows="3" cols="35" wrap="virtual" size=40>{attach_row.FILE_COMMENT}</textarea> &nbsp;
			<input class="btnlite" type="submit" name="edit_comment[{attach_row.ASSOC_INDEX}]" value="{L_UPDATE_COMMENT}" /> &nbsp;
			<input class="btnlite" type="submit" name="delete_file[{attach_row.ASSOC_INDEX}]" value="{L_DELETE_FILE}" /></td>
		</tr>
		{attach_row.S_HIDDEN}	
		<!-- END attach_row -->

	<!-- ENDIF -->