clipbucket/upload/styles/cbv3/layout/view_item.html
Fawaz bf71180b54 Added : All the spaces and tabs left behind because of testing code
Added : Send photo PM ajax. Temporarily will be moved once ajax structure is up
Fixed : Move avatar from photo to a function called upload_new_avatar() in functions_users.php
Fixed : & in collection links
Updated : Updated the function createTextfield. It was missing some important fields
Updated : Photo & Watermark resizing by new resizer.class.php
Added : LEFT JOIN for collection in get_photo function
Added : function join_collection_table in function_photos.php
Registered : Two photo function at cb_head ANCHOR called load_tagging & load_photo_actions in common.php
Registered : photo_action_links filter to add 'Send in private message' link
Added : Photo PM Handlers using attach_photo_pm_handlers
Fixed : CB Tagger CSS and CB Tagger JS
Updated : Some Template files just for testing purpose
Added : Some Template files, again just for testing purpose
2012-05-18 13:47:20 +00:00

35 lines
No EOL
1.7 KiB
HTML

<div class="thumbnail inlineblock">
{get_photo details=$object size='l' output='html'}
</div>
<div id="some" class="inlineblock marginL10 well" style="vertical-align: top; padding: 8px 0;"></div>
<div id="private_message_photo_form" class="hide fade modal">
<div class="modal-header">
<h3>{lang code='new_private_msg'}</h3>
</div>
<form id="pm_msg" name="pm_msg" method="post" action="" class="form-horizontal" style="margin:0px;">
<div class="modal-body">
<div id="private_message_response" class="alert hide">
Something to show
</div>
{assign var='form_fields' value=$cbpm->load_compose_form()}
<fieldset>
{foreach from=$form_fields item=field}
<div class="control-group">
<label for="{$field.id}" class="control-label">{$field.title}</label>
<div class="controls">
{if $field.hint_1}<p class="help-block">{$field.hint_1}</p>{/if}
{$formObj->createField($field)}
{if $field.hint_2}<p class="help-block">{$field.hint_2}</p>{/if}
</div>
</div>
{/foreach}
</fieldset>
</div>
<div class="modal-footer">
<button class="btn btn-primary" id="cb_send_photo_pm" type="button">{lang code='com_send_message'}</button>
<button class="btn" data-dismiss="modal" type="button">{lang code='Cancel'}</button>
</div>
</form>
</div>