diff options
author | Cesar G <prototech91@gmail.com> | 2013-11-10 16:42:20 -0800 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-01-17 19:20:36 -0800 |
commit | 691dfd845372034e7b6d691433ca05720e12e267 (patch) | |
tree | 528978ae85d20d679e95755e3b965ce10408d9c6 | |
parent | 4361c1c9ac783a0004edebab83ca26a8899361df (diff) | |
download | forums-691dfd845372034e7b6d691433ca05720e12e267.tar forums-691dfd845372034e7b6d691433ca05720e12e267.tar.gz forums-691dfd845372034e7b6d691433ca05720e12e267.tar.bz2 forums-691dfd845372034e7b6d691433ca05720e12e267.tar.xz forums-691dfd845372034e7b6d691433ca05720e12e267.zip |
[ticket/11915] Add row template for new attachments.
PHPBB3-11915
-rw-r--r-- | phpBB/styles/prosilver/template/posting_attach_body.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/posting_attach_body.html b/phpBB/styles/prosilver/template/posting_attach_body.html index 8262645a09..af215bb710 100644 --- a/phpBB/styles/prosilver/template/posting_attach_body.html +++ b/phpBB/styles/prosilver/template/posting_attach_body.html @@ -33,6 +33,25 @@ </tr> </thead> <tbody id="file-list"> + <tr class="attach-row" id="attach-row-tpl"> + <td class="attach-name"> + <span class="file-name"></span> + <span class="attach-controls"> + <input type="button" value="{L_PLACE_INLINE}" class="button2 hidden file-inline-bbcode" /> + <input type="button" value="{L_DELETE_FILE}" class="button2 file-delete" /> + </span> + </td> + <td class="attach-comment"> + <textarea rows="1" cols="30" class="inputbox"></textarea> + </td> + <td class="attach-filesize file-size"></td> + <td class="attach-status"> + <span class="file-progress"> + <span class="file-progress-bar"></span> + </span> + <span class="file-status"></span> + </td> + </tr> <!-- BEGIN attach_row --> <tr class="attach-row" data-attach-id="{attach_row.ATTACH_ID}"> <td class="attach-name"> |