summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authortardo <tardo@nagi-fanboi.net>2007-10-02 20:47:51 +0200
committerDan McGee <dan@archlinux.org>2008-01-20 06:48:30 +0100
commitd06163269bd88ee7fd5e48fd7d43a8b249ffd2d8 (patch)
treed1c6c99c0e8acaf1554e0e5ccab96ebb0614c3f6 /web
parentc404c278cc8b4184f2104e6525baf092ed60b27c (diff)
downloadaur-d06163269bd88ee7fd5e48fd7d43a8b249ffd2d8.tar.gz
aur-d06163269bd88ee7fd5e48fd7d43a8b249ffd2d8.tar.xz
Move "Add Comment" button to Actions bar.
The lonely button now gains some friends. Signed-off-by: tardo <tardo@nagi-fanboi.net>
Diffstat (limited to 'web')
-rw-r--r--web/html/css/containers.css4
-rw-r--r--web/lib/pkgfuncs.inc21
2 files changed, 13 insertions, 12 deletions
diff --git a/web/html/css/containers.css b/web/html/css/containers.css
index e42bd5a1..63eb4b4c 100644
--- a/web/html/css/containers.css
+++ b/web/html/css/containers.css
@@ -212,3 +212,7 @@
font-size: 12px;
}
+ form.actions
+ {
+ display: inline;
+ }
diff --git a/web/lib/pkgfuncs.inc b/web/lib/pkgfuncs.inc
index 300593b7..c5e1719c 100644
--- a/web/lib/pkgfuncs.inc
+++ b/web/lib/pkgfuncs.inc
@@ -462,7 +462,15 @@ function package_details($id=0, $SID="") {
echo "<div class=\"pgbox\">\n";
echo " <div class=\"pgboxtitle\"><span class=\"f3\">".__("Actions")."</span></div>\n";
echo " <div class=\"pgboxbody\">\n";
- echo " <form action='/packages.php' method='post'>\n";
+
+ # Add Comment button
+ #
+ echo " <form action='/pkgedit.php' method='post' class='actions'>\n";
+ echo " <input type='hidden' name='ID' value='".$row["ID"]."'>\n";
+ echo " <input type='submit' class='button' name='add_Comment' value=\"";
+ echo __("Add Comment")."\">\n";
+ echo " </form>\n";
+ echo " <form action='/packages.php' method='post' class='actions'>\n";
echo " <input type='hidden' name='IDs[".$row["ID"]."]' value='1'>\n";
echo " <input type='hidden' name='ID' value='".$row["ID"]."'>\n";
# Voting Button
@@ -523,13 +531,11 @@ function package_details($id=0, $SID="") {
echo "<input type='submit' class='button' name='do_Delete'";
echo " value='".__("Delete Packages")."'>\n";
}
-
echo " </form>\n";
echo " </div>\n";
echo "</div>\n";
echo "\n<br />\n\n";
}
-
# Comments
#
echo "<div class=\"pgbox\">\n";
@@ -585,15 +591,6 @@ function package_details($id=0, $SID="") {
}
}
- echo " <tr>\n";
- echo " <td colspan='2'>\n";
- echo " <form action='/pkgedit.php' method='post'>\n";
- echo " <input type='hidden' name='ID' value='".$row["ID"]."'>\n";
- echo " <input type='submit' class='button' name='add_Comment' value=\"";
- echo __("Add Comment")."\">\n";
- echo " </form>\n";
- echo " </td>\n";
- echo " </tr>\n";
echo " </table>\n";
echo " </div>\n";
echo "</div>\n";