aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-08-07 06:20:27 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-08-07 06:20:27 -0700
commitadce88e564f2e9a6c8487bf23762afe1413ed263 (patch)
treeb789d38aad78dd76c3638227af73a9212688731a /view
parentedff5b5289f80be89e4fc6b072ccd84812960349 (diff)
downloadvolse-hubzilla-adce88e564f2e9a6c8487bf23762afe1413ed263.tar.gz
volse-hubzilla-adce88e564f2e9a6c8487bf23762afe1413ed263.tar.bz2
volse-hubzilla-adce88e564f2e9a6c8487bf23762afe1413ed263.zip
photo editing
Diffstat (limited to 'view')
-rw-r--r--view/photo_edit.tpl11
-rw-r--r--view/photos_upload.tpl10
-rw-r--r--view/style.css19
3 files changed, 39 insertions, 1 deletions
diff --git a/view/photo_edit.tpl b/view/photo_edit.tpl
new file mode 100644
index 000000000..7b579492f
--- /dev/null
+++ b/view/photo_edit.tpl
@@ -0,0 +1,11 @@
+
+<form action="photos" method="post" id="photo_edit_form" >
+
+ <label id="photo-edit-caption-label" for="photo-edit-caption">$capt_label</label>
+ <input type="text size="64" name="desc" value="$caption" />
+
+ <label id="photo-edit-tags-label" for="photo-edit-tags-textarea" >$tag_label</label>
+ <textarea name="tags" id="photo-edit-tags-textarea">$tags</textarea>
+
+ <input type="submit" name="submit" value="$submit" />
+</form>
diff --git a/view/photos_upload.tpl b/view/photos_upload.tpl
index 36e1780d5..a03779775 100644
--- a/view/photos_upload.tpl
+++ b/view/photos_upload.tpl
@@ -13,6 +13,16 @@
</div>
<div id="photos-upload-exist-end"></div>
+
+ <div id="photos-upload-perms" class="photos-upload-perms" ><div id="photos-upload-perms-menu" onClick="openClose('photos-upload-permissions-wrapper');" />$permissions</div>
+ <div id="photos-upload-perms-end"></div>
+
+ <div id="photos-upload-permissions-wrapper" style="display: none;" >
+
+ $aclselect
+
+ </div>
+
<div id="photos-upload-select-files-text">$filestext</div>
<div id="photos_upload_applet_wrapper">
diff --git a/view/style.css b/view/style.css
index 4fa962033..4fbe5d20e 100644
--- a/view/style.css
+++ b/view/style.css
@@ -1308,4 +1308,21 @@ input#dfrn-url {
#profile-jot-banner-end {
clear: both;
-} \ No newline at end of file
+}
+
+#photos-upload-select-files-text {
+ margin-top: 15px;
+ margin-bottom: 15px;
+}
+
+#photos-upload-perms-menu, #photos-upload-perms-menu:visited {
+ color: #8888FF;
+ text-decoration: none;
+ cursor: pointer;
+}
+
+#photos-upload-perms-menu:hover {
+ color: #0000FF;
+ text-decoration: underline;
+ cursor: pointer;
+}