Added msising publish-dialog.phtml and fixed .gitignore file
This commit is contained in:
parent
8322b580aa
commit
30d742af92
|
@ -4,7 +4,7 @@
|
|||
vendor/*
|
||||
composer.phar
|
||||
*~$
|
||||
*log.*
|
||||
*\.log.*
|
||||
**/*.egg-info/*
|
||||
**/build/*
|
||||
**/dist/*
|
||||
|
|
|
@ -0,0 +1,39 @@
|
|||
<div class="inner_editor_title">
|
||||
<h2>
|
||||
<?php echo _("Publishing") ?> "<span ng-bind="media.track_title" class="title_obj_name"></span>"
|
||||
</h2>
|
||||
</div>
|
||||
<div class="inner_editor_wrapper">
|
||||
<form class="media-metadata">
|
||||
<input ng-value="media.id" class="obj_id" type="hidden"/>
|
||||
<label>
|
||||
<?php echo _("Title") ?>
|
||||
<input disabled ng-model="media.track_title" type="text"/>
|
||||
</label>
|
||||
<label>
|
||||
<?php echo _("Creator") ?>
|
||||
<input disabled ng-model="media.creator" type="text"/>
|
||||
</label>
|
||||
<fieldset>
|
||||
<legend><?php echo _("Publish to:"); ?></legend>
|
||||
<input type="checkbox" name="publish_sources" id="station_podcast" value="station_podcast"><label for="station_podcast"><?php echo(_("My Station Podcast"));?></label><br/>
|
||||
<input type="checkbox" name="publish_sources" id="soundcloud" value="soundcloud"><label for="soundcloud">SoundCloud</label>
|
||||
</fieldset>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<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="publish()" class="btn" title='<?php echo _("Publish") ?>' type="button">
|
||||
<?php echo _("Publish") ?>
|
||||
</button>
|
||||
</div>
|
||||
<div class='success' style='display:none'></span></div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue