aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/subSilver/template/posting_attach_body.html
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-07-24 13:22:39 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-07-24 13:22:39 +0000
commitc93474e11839f56a51d662ae40336e9ba61a12a2 (patch)
tree0ad79c8fe0e1cccceb92d673f2088ce1e6c4bf60 /phpBB/styles/subSilver/template/posting_attach_body.html
parentaf1cc18e023bc8b55bc86417d25f4e0debbc3deb (diff)
downloadforums-c93474e11839f56a51d662ae40336e9ba61a12a2.tar
forums-c93474e11839f56a51d662ae40336e9ba61a12a2.tar.gz
forums-c93474e11839f56a51d662ae40336e9ba61a12a2.tar.bz2
forums-c93474e11839f56a51d662ae40336e9ba61a12a2.tar.xz
forums-c93474e11839f56a51d662ae40336e9ba61a12a2.zip
Moving again ... I think this time will be the last ... famous last words
git-svn-id: file:///svn/phpbb/trunk@4323 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/subSilver/template/posting_attach_body.html')
-rw-r--r--phpBB/styles/subSilver/template/posting_attach_body.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/phpBB/styles/subSilver/template/posting_attach_body.html b/phpBB/styles/subSilver/template/posting_attach_body.html
new file mode 100644
index 0000000000..243428209a
--- /dev/null
+++ b/phpBB/styles/subSilver/template/posting_attach_body.html
@@ -0,0 +1,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 -->