@extends('layouts.master') @section('page_title',$title) @section('content')
{{ Form::page_header($title, "paper_stack") }}
@include('shared._message_all')
{{ Form::button_ex('Add Block', 'on_add_block();') }} {{ Form::select_ex(null, null, \App\Models\Content_Block::content_block_select($campaign_deliverable->type), null, null, null, 'content_block') }}
    @foreach($campaign_deliverable->_campaign_deliverable_content_block()->orderBy('sort')->get() as $campaign_deliverable_content_block) @include('reach.campaign_event.content_block._content_block_details', compact('campaign_deliverable_content_block')) @endforeach
{{ Form::button_ex('Apply to Content', 'apply_content();') }} {{ Form::button_ex('Save as New Template', 'save_new_template();') }} {{ Form::button_link('Close', $campaign_deliverable->close_url) }}
@include('shared.modals._text_modal', ['type' => 'template', 'title' => 'Template Name', 'text_type' => 'text']) @endsection @section('page_script') @include('shared_script._nested_sortable') @include('shared_script.modals._text_modal_script') @endsection @section('page_style') @endsection