(function() {
	angular.module('web').run(run);

	run.$inject = ['$templateCache'];
	function run($templateCache) {
		$templateCache.put('app/components/adCheckout/adCheckout.html','<div> <legacy-form form-title="Ad Purchase" legacy-path="Public/DinnerJournal.aspx" button-text="Purchase an ad"> </legacy-form> </div>');
		$templateCache.put('app/components/auctionDonationForm/auctionDonationForm.html','<div class="well-sm bg-danger text-center"> Auction Donation Form not implemented. </div>');
		$templateCache.put('app/components/auctionRegistration/auctionRegistration.html','<div> <legacy-form form-title="Auction Registration" legacy-path="Public/AuctionRegistration.aspx" button-text="Register now"> </legacy-form> </div>');
		$templateCache.put('app/components/auctionViewer/auctionViewer.html','<div class="well-sm bg-danger text-center"> Auction viewer not implemented. </div>');
		$templateCache.put('app/components/beneficiaryApplication/beneficiaryApplication.html','<div> <legacy-form form-title="Beneficiary Application" legacy-path="Public/BeneficiaryApplication.aspx" button-text="Apply now"> </legacy-form> </div>');
		$templateCache.put('app/components/beneficiaryShowcase/beneficiaryShowcase.html','<div> <img ng-src="{{ bannerImageUrl }}" ng-if="showcase.year < context.currentYear" alt="{{ showcase.year + \' Black Tie Dinner\'}}" style="width: 100%; margin-bottom: 20px;" /> <div ng-repeat="beneficiary in showcase.beneficiaries"> <div class="media"> <div class="media-left"> <img class="media-object thumbnail" ng-src="{{ logoDirectory + beneficiary.logoFileName }}" alt="{{ beneficiary.listingName }}" /> </div> <div class="media-body relative"> <h3 class="media-heading"> {{ beneficiary.listingName }} </h3> <p> {{ beneficiary.about | truncate: 350 }} </p> <div class="abs-bottom-left small" style="margin-bottom: 25px;"> <a href="{{ beneficiary.website }}" target="_blank"> <i class="fa fa-fw fa-external-link"> </i> Visit website </a> </div> <div ng-if="beneficiary.distributionAmount" class="abs-bottom-right text-right text-muted small" style="margin-bottom: 25px;"> {{ showcase.year }} distribution: <b>{{ beneficiary.distributionAmount | money }}</b> </div> </div> </div> </div> <div ng-if="showcase.previous"> <div class="previous-beneficiary-national"> <img ng-repeat="beneficiary in ::showcase.previous.beneficiaries | subset :0 :1" ng-src="{{ previousLogoDirectory + beneficiary.logoFileName }}" alt="{{ beneficiary.listingName }}" /> </div> <div class="previous-beneficiaries-local"> <img ng-repeat="beneficiary in ::showcase.previous.beneficiaries | subset: 1" ng-src="{{ previousLogoDirectory + beneficiary.logoFileName }}" alt="{{ beneficiary.listingName }}" /> </div> <div class="clearfix"> </div> <br /> <div class="text-muted text-center small"> Logos shown here are Black Tie Dinner\'s {{ showcase.previous.year }} beneficiaries. </div> </div> </div>');
		$templateCache.put('app/components/calendar/calendar.html','<div> <div ui-calendar="calendar" ng-model="events"> </div> </div>');
		$templateCache.put('app/components/carousel/carousel.html','<div ng-style="{\'height\': height }" class="carousel"> <uib-carousel active="active" interval="interval"> <uib-slide ng-repeat="slide in carousel" index="$index"> <a href="{{slide.url}}"> <img ng-if="::isPortrait" class="img-responsive" ng-src="{{slide.portraitImageUrl}}" style="margin: auto; width: 100%;"> <img ng-if="::!isPortrait" class="img-responsive" ng-src="{{slide.landscapeImageUrl}}" style="margin: auto; width: 100%;"> <div class="carousel-caption"> </div> </a> </uib-slide> </uib-carousel> </div>');
		$templateCache.put('app/components/contactForm/contactForm.html','<div> <div class="form-group"> <label for="message_fromName"> Your name </label> <input type="text" id="message_fromName" name="message_fromName" ng-model="message.fromName" class="form-control" /> </div> <div class="form-group"> <label for="message_fromEmail"> Your email </label> <input type="text" id="message_fromEmail" name="message_fromEmail" ng-model="message.fromEmail" class="form-control" /> </div> <div class="form-group"> <label> Message </label> <textarea rows="10" id="message_body" name="message_body" ng-model="message.body" class="form-control"> </textarea> </div> <div class="text-right"> <button type="submit" class="btn btn-lg btn-success" ng-click="sendMessage(message)"> Submit </button> </div> </div>');
		$templateCache.put('app/components/donationCheckout/donationCheckout.html','<div> <legacy-form form-title="{{::formTitle}}" legacy-path="{{::legacyPath}}" button-text="Donate Now"> </legacy-form> </div>');
		$templateCache.put('app/components/guestCheckout/guestCheckout.html','<div> <legacy-form form-title="Guest Checkout" legacy-path="Public/GuestCheckout.aspx?invite={{ inviteNumber }}" button-text="Complete Ticket Purchase"> </legacy-form> </div>');
		$templateCache.put('app/components/loginForm/loginForm.html','<div> <iframe src="{{legacyUrl + \'Public/Login.aspx\'}}" width="100%" height="1000px" style="border: none;"> </iframe> </div>');
		$templateCache.put('app/components/menu/menu.html','<ul> <li ng-repeat="item in items" ng-class="{\'current\': item.key == context.pageKey }"> <a href="{{:: item.href }}"> {{:: item.title }} </a> </li> </ul>');
		$templateCache.put('app/components/newsfeed/newsfeed.html','<div id="annoucements"> <div class="media" ng-repeat="annoucement in newsfeed"> <div class="media-left text-center"> <div class="date-box"> <span>{{ ::annoucement.publishDateTime | date: \'MMM\' }}</span> <span>{{ ::annoucement.publishDateTime | date: \'dd\' }}</span> </div> </div> <div class="media-body"> <p> {{ ::annoucement.description || annoucement.title }} <a ng-href="{{::annoucement.url}}" ng-if="::annoucement.url" class="more">more...</a> </p> </div> </div> </div>');
		$templateCache.put('app/components/pressRoom/pressRoom.html','<div> <table class="table table-condensed"> <thead> <th>&nbsp;</th> <th>Title</th> <th class="text-right">Publish Date</th> </thead> <tbody> <tr ng-repeat="pressRelease in pressReleases" title="{{pressRelease.title}}"> <td> <a href="{{ downloadDirectory + pressRelease.downloadFileName }}" target="_blank"> <i class="fa fa-fw fa-download"> </i> </a> </td> <td> <a href="" ng-click="view(pressRelease)"> {{ pressRelease.title | truncate: 100 }} </a> </td> <td class="text-right"> {{ pressRelease.publishDateTime | date }} </td> </tr> </tbody> </table> </div>');
		$templateCache.put('app/components/raffleCheckout/raffleCheckout.html','<div> <div ng-if="bene" class="box text-center"> <div class="text-muted small"> Raffle Tickets purchased below will help all of our beneficiaries, with special benefit to: </div> <img src="{{ beneImagePath }}"/> </div> <legacy-form form-title="Raffle Tickets" legacy-path="{{ \'Public/Raffle.aspx\' + (bene ? \'?bene=\' + bene : \'\') }}" button-text="Purchase now"> </legacy-form> </div>');
		$templateCache.put('app/components/raffleSchedule/raffleSchedule.html','<div> <table class="table table-condensed table-striped"> <thead> <th colspan="2">Event / Location</th> <th class="text-right">Ticket Drawn</th> </thead> <tbody> <tr ng-repeat="drawing in raffleSchedule.drawings"> <td> <div class="date-box" ng-if="drawing.date"> <span>{{ drawing.date | date : \'MMM\' }}</span> <span>{{ drawing.date | date : \'dd\' }}</span> </div> <div class="date-box" ng-if="!drawing.date"> <span>&nbsp;</span> <span>TBD</span> </div> </td> <td> {{ drawing.location }} <div class="text-muted small"> {{drawing.date | fromNow }} </div> </td> <td class="text-right"> <div ng-if="drawing.ticketDrawn"> <div class="text-success"> {{ drawing.ticketDrawn.winnerName }} </div> <div class="text-muted small"> Ticket #{{ drawing.ticketDrawn.number }} </div> </div> </td> </tr> </tbody> </table> </div>');
		$templateCache.put('app/components/rsvpForm/rsvpForm.html','<div> <div class="panel panel-default" ng-repeat="event in ::events"> <div class="panel-heading"> <span class="lead">{{:: event.title }}</span> </div> <div class="panel-body"> <div ng-bind-html="event.rsvpMarkup"> </div> <legacy-form form-title="RSVP" legacy-path="{{ ::\'Public/RSVP.aspx?eventid=\' + event.id }}" button-text="RSVP Now"> </legacy-form> </div> <div class="panel-footer text-center"> <span class="small text-muted"> RSVP Deadline: {{ event.rsvpDeadline | date }} </span> </div> </div> <div class="well well-sm text-center" ng-if="events.length == 0"> There are no RSVP events at this time. </div> </div>');
		$templateCache.put('app/components/silentAuctionForm/silentAuctionForm.html','<div class="well-sm bg-danger text-center"> Silent Auction Form not implemented </div>');
		$templateCache.put('app/components/sponsorShowcase/sponsorShowcase.html','<div id="sponsor-showcase"> <div ng-repeat="level in showcase.levels"> <h3>{{ level.title }}</h3> <div class="relative" ng-style="{ \'height\': level.logoSettings.containerHeight }"> <a ng-href="{{logo.websiteUrl}}" target="_blank" ng-repeat="logo in level.logos" style="display: block; position: absolute;" ng-style="{\'left\': logo.xCoordinate, \'top\': logo.yCoordinate }"> <img ng-src="{{ logoDirectory + logo.logoFileName }}" alt="{{ logo.displayName }}" /> </a> </div> <div class="row"> <div ng-repeat="listing in level.listings" ng-class="{ \'col-sm-6\' : level.listingSettings.columns == 2, \'col-sm-12\' : level.listingSettings.columns == 1 }" ng-style="{ \'font-size\' : level.listingSettings.fontSize }"> {{ listing }} </div> </div> </div> </div>');
		$templateCache.put('app/components/sponsorSignup/sponsorSignup.html','<div> <legacy-form form-title="Sponsor Signup" legacy-path="Public/Sponsor.aspx" button-text="Sign up now"> </legacy-form> </div>');
		$templateCache.put('app/components/spotlight/spotlight.html','<div id="spotlight"> <div class="media" ng-repeat="feature in features"> <div class="media-left"> <a href="{{ ::feature.url }}"> <img ng-src="{{ ::feature.imageUrl }}" alt="{{ ::feature.title }}" style="width: 75px; height: 75px;" /> </a> </div> <div class="media-body"> <h4> <a href="{{ ::feature.url }}"> {{ ::feature.title }} </a> </h4> <p> {{ ::feature.description }} <a ng-href="{{::feature.url}}" ng-if="::feature.url" class="more">more...</a> </p> </div> </div> </div>');
		$templateCache.put('app/components/subscribeForm/subscribeForm.html','<form action="" method="post" novalidate="novalidate"> <div class="input-group"> <input id="EmailAddress" type="text" name="EmailAddress" placeholder="Email address" class="form-control form-control-sm" /> <span class="input-group-btn"> <button type="submit" class="btn btn-sm btn-success"> Subscribe </button> </span> </div> </form>');
		$templateCache.put('app/components/tableCaptainSignup/tableCaptainSignup.html','<div> <legacy-form form-title="Table Captain Signup" legacy-path="Public/TableSales.aspx" button-text="Sign up now"> </legacy-form> </div>');
		$templateCache.put('app/components/taxReceiptForm/taxReceiptForm.html','<div class="box"> <p class="text-muted"> To view a breakdown of your tax deduction, please provide the following. </p> <br /> <div class="row"> <div class="form-group col-md-6"> <label for="lookup_year"> Year </label> <input type="text" id="lookup_year" name="lookup_year" ng-model="lookup.year" class="form-control"/> </div> <div class="form-group col-md-6"> <label for="lookup_year"> Reference Number </label> <input type="text" id="lookup_ref" name="lookup_ref" ng-model="lookup.ref" class="form-control"/> </div> </div> <legacy-form form-title="Tax Receipts" legacy-path="{{ \'Public/TaxReceipts.aspx?year=\' + lookup.year + \'&ref=\' + lookup.ref }}" button-text="Lookup Tax Receipt"> </legacy-form> </div>');
		$templateCache.put('app/components/ticketsCheckout/ticketsCheckout.html','<div> <legacy-form form-title="{{::formTitle}}" legacy-path="{{::legacyPath}}" button-text="Purchase Tickets"> </legacy-form> </div>');
		$templateCache.put('app/components/ticketWaitingList/ticketWaitingList.html','<div class="well-sm bg-danger text-center"> Ticket Waiting List not implemented. </div>');
		$templateCache.put('app/components/volunteerSignup/volunteerSignup.html','<div> <div class="row"> <div class="form-group col-md-6"> <label for="signup_fullName"> Full Name </label> <input type="text" id="signup_fullName" name="signup_fullName" ng-model="signup.fullName" class="form-control" /> </div> <div class="form-group col-md-6"> <label for="signup_emailAddress"> Email Address </label> <input type="text" id="signup_emailAddress" name="signup_emailAddress" ng-model="signup.emailAddress" class="form-control" /> </div> <div class="form-group col-md-6"> <label for="signup_streetAddress"> Address </label> <input type="text" id="signup_streetAddress" name="signup_streetAddress" ng-model="signup.streetAddress" class="form-control" /> <input type="text" id="signup_cityStatePostal" name="signup_cityStatePostal" ng-model="signup.cityStatePostal" class="form-control" style="margin-top: 10px;" /> </div> <div class="form-group col-md-6"> <label for="signup_phone"> Phone </label> <input type="text" id="signup_phone" name="signup_phone" ng-model="signup.phone" class="form-control" /> </div> <div class="clearfix"> </div> <div class="form-group col-xs-12"> <label> Volunteer Interests </label> <textarea rows="5" id="signup_volunteerInterests" name="signup_volunteerInterests" ng-model="signup.volunteerInterests" class="form-control"> </textarea> </div> <div class="form-group col-xs-12"> <label> Do you have a relationship with any of our beneficiaries? If so, please specify? </label> <textarea rows="3" id="signup_beneficiaryAffiliations" name="signup_beneficiaryAffiliations" ng-model="signup.beneficiaryAffiliations" class="form-control"> </textarea> </div> <div class="form-group col-xs-12"> <label> What times of day/week are you most available? </label> <textarea rows="2" id="signup_bestTimeToContact" name="signup_bestTimeToContact" ng-model="signup.bestTimeToContact" class="form-control"> </textarea> </div> <div class="text-right col-xs-12"> <button type="submit" class="btn btn-lg btn-success" ng-click="sendMessage(signup)"> Submit </button> </div> </div> </div>');
	}

})();