I am putting a calendar of events together for a weekend event. I am trying to create a angular template for each day since each gets its own colors(css1 and css2). I was able to create one template that reads all events and returns Saturday and Sunday together as seen in the first plunker link below.
But when I try to make the template just return the Saturday events it did not work, plunker below. Sorry if it seems too much code in the plunker, just trying to show the need for the options tag to work with the template. Needless to say i'm new to Angular so any help would be appreciated.
working single template plunker: http://plnkr.co/edit/gaKFWTsACxwCg0i4JCiw?p=preview
plunker of Saturday template not working: http://plnkr.co/edit/A6f8ZUyXg9pdH6HzO2ET?p=preview
<h1>Saturday</h1>
<div class="target-stage stage-only" style="width:100%; border:none;"
ng-repeat="item in artists | filter: query | filter: {{day: artistDay,
value:"Saturday"}, time: artistTime, stage: artistStage}">
<table width="100%" cellspacing="0" border="0" cellpadding="0"
style="border:none;">
<tr>
<td class="venue-bar"><h3 style="font-size:16px;"><b>{{item.stage}}
</b></h3></td>
</tr>
</table>
<table class="target-stage stage-only" border="0" cellspacing="0"
cellpadding="0" style="border:none;" >
<tr>
<td width="190" valign="top" class="ev-time">{{item.time}}</td>
<td valign="top" class="ev-desc">
<p class="ev-date">{{item.day}}, {{item.date}}, 2015</p>
<strong>{{item.first_name}} {{item.last_name}},</strong> Author of
<em>" {{item.work_title}}"</em><br />
{{item.stage}}
<span class="info-btn"><p class="selctor" rel={{item.rel}}><span
class="addSchd"><a href="#"><b>+ MY SCHEDULE</b></a></span>
<span class="premove hidd" rel="0"><a href="#">Remove</a></span></p>
</span></td>
</tr>
</table>
</div>