SAAS-1062 - Podcast skeleton work; slight rework to backend functionality
This commit is contained in:
parent
6934bcfdab
commit
6de6e2767c
6 changed files with 140 additions and 14 deletions
34
airtime_mvc/application/views/scripts/podcast/podcast.phtml
Normal file
34
airtime_mvc/application/views/scripts/podcast/podcast.phtml
Normal file
|
@ -0,0 +1,34 @@
|
|||
<div id="podcast-wrapper" ng-controller="RestController">
|
||||
<div class="inner_editor_title">
|
||||
<h2>
|
||||
<?php echo _("Editing ") ?>"<span ng-bind="podcast.title" class="title_obj_name"></span>"
|
||||
</h2>
|
||||
</div>
|
||||
<div class="inner_editor_wrapper">
|
||||
<input ng-value="podcast.id" class="obj_id" type="hidden"/>
|
||||
<label>
|
||||
<?php echo _("Podcast Name") ?>
|
||||
<input disabled ng-model="podcast.title" type="text"/>
|
||||
</label>
|
||||
<label>
|
||||
<?php echo _("Podcast URL") ?>
|
||||
<input disabled ng-model="podcast.url" type="text"/>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<table class="podcast_episodes datatable" cellpadding="0" cellspacing="0"></table>
|
||||
|
||||
<div class="btn-toolbar clearfix">
|
||||
<div class="btn-group pull-right">
|
||||
<button ng-click="discard()" class="btn" type="button" name="cancel">
|
||||
<?php echo _("Cancel") ?>
|
||||
</button>
|
||||
</div>
|
||||
<div class='btn-group pull-right'>
|
||||
<button ng-click="put()" class="btn" title='<?php echo _("Save podcast") ?>' type="button">
|
||||
<?php echo _("Save") ?>
|
||||
</button>
|
||||
</div>
|
||||
<div id='sp-success' class='success' style='display:none'></span></div>
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue