diff options
author | François KUBLER <francois@kubler.org> | 2011-03-09 22:46:17 +0100 |
---|---|---|
committer | François KUBLER <francois@kubler.org> | 2011-03-09 22:46:17 +0100 |
commit | 7faf852561d3aca1cd1f62858d03d5b3daf888f9 (patch) | |
tree | fb4fcaf5ff77085073f003f59778577373638af9 /files/templates | |
parent | bf815b33908394fcda4fb6cb987caaca58b20fd0 (diff) | |
parent | ab22dfde8a2b34b14c8024d68a16131fc7deefa5 (diff) | |
download | nextcloud-server-7faf852561d3aca1cd1f62858d03d5b3daf888f9.tar.gz nextcloud-server-7faf852561d3aca1cd1f62858d03d5b3daf888f9.zip |
Merge branch 'refactoring' of git.kde.org:owncloud into refactoring
Conflicts:
admin/templates/index.php
templates/layout.admin.php
templates/layout.user.php
All conflicts are fixed.
Diffstat (limited to 'files/templates')
-rw-r--r-- | files/templates/admin.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/files/templates/admin.php b/files/templates/admin.php new file mode 100644 index 00000000000..811b48af027 --- /dev/null +++ b/files/templates/admin.php @@ -0,0 +1,19 @@ +<?php +/* + * Template for files admin page + */ +?> +<h1>Admin</h1> + +<form> + <input type="checkbox" /> Allow public folders<br> + + (if public is enabled)<br> + <input type="radio" name="sharingaim" checked="checked" /> separated from webdav storage<br> + <input type="radio" name="sharingaim" /> let the user decide<br> + <input type="radio" name="sharingaim" /> folder "/public" in webdav storage<br> + (endif)<br> + + <input type="checkbox" /> Allow downloading shared files<br> + <input type="checkbox" /> Allow uploading in shared directory<br> +</form> |