summaryrefslogtreecommitdiffstats
path: root/templates/show_edit_album.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-12-21 08:22:31 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-12-21 08:22:31 +0000
commit2493e8eb48c48eeda11095406fdc22004053271a (patch)
tree8cb5106acd98e83009ac23544593bcff8d442959 /templates/show_edit_album.inc.php
parentaac50100d3e0d88d06f225cf7a1bff1131099e70 (diff)
downloadampache-2493e8eb48c48eeda11095406fdc22004053271a.tar.gz
ampache-2493e8eb48c48eeda11095406fdc22004053271a.tar.bz2
ampache-2493e8eb48c48eeda11095406fdc22004053271a.zip
switched the enable/disable icons and filled out the show_edit_album page, still doesnt work
Diffstat (limited to 'templates/show_edit_album.inc.php')
-rw-r--r--templates/show_edit_album.inc.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/show_edit_album.inc.php b/templates/show_edit_album.inc.php
index 6b6c42fa..141288b8 100644
--- a/templates/show_edit_album.inc.php
+++ b/templates/show_edit_album.inc.php
@@ -24,8 +24,25 @@
<form name="edit_album" method="post" enctype="multipart/form-data" action="<?php echo conf('web_path'); ?>/admin/flag.php?action=edit_album">
<table class="tabledata">
<tr class="<?php echo flip_class(); ?>">
+ <td><?php echo _('Name'); ?></td>
+ <td>
+ <input type="textbox" name="name" value="<?php echo scrub_out($album->artist); ?>">
+ </td>
+</tr>
+<tr class="<?php echo flip_class(); ?>">
+ <td><?php echo _('Year'); ?></td>
+ <td>
+ <input type="textbox" name="year" value="<?php echo scrub_out($album->year); ?>">
+ </td>
+</tr>
+<tr class="<?php echo flip_class(); ?>">
<td>&nbsp;</td>
<td>
+ <input type="checkbox" name="flag" value="1" checked="checked" /> <?php echo _('Flag for Retagging'); ?>
+ </td>
+</tr>
+<tr class="<?php echo flip_class(); ?>">
+ <td colspan="2">
<input type="hidden" name="album_id" value="<?php echo $album->id; ?>" />
<input type="submit" value="<?php echo _('Update Album'); ?>" />
</td>