-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecordtemplate.html
27 lines (26 loc) · 1.15 KB
/
recordtemplate.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<td class="honoree">
<input type="hidden" ng-model="record.id">
{{record.honoree}}
</td>
<td class="gregdate"><!-----greg date --------------------------------------->
{{gregmonths[record.greg_month-1].label}}
{{record.greg_day}}
{{record.greg_year}}
</td><!-- /greg date ------------------------------------->
<td class="hebdate"> <!--- heb date --------------------------------------->
{{hebmonths[record.heb_month-1].label}}
{{record.heb_day}}
{{record.heb_year}}
</td><!-- /heb date-------------------------------------->
<td class="editcol" >
<span ng-show="record.id==0">
<button type="button" ng-click="submitnew(record)">save</button>
<button type="button" ng-click="reset(record)">cancel</button>
</span>
<span ng-show="showdeletefor==record.id && editinguser==false">
<button type="button" ng-click="photo(record)"><span alt="Upload Photo" class="glyphicon glyphicon-camera"></span></button>
<button type="button" ng-click="edit(record)"><span class="glyphicon glyphicon-pencil"></span></button>
<button type="button" ng-click="confirmdelete(record)"><span class="glyphicon glyphicon-remove"></span></button>
</span>
</td>
<td></td>