diff options
author | Christian Vogeley <christian.vogeley@hotmail.de> | 2013-09-08 00:21:42 +0200 |
---|---|---|
committer | Christian Vogeley <christian.vogeley@hotmail.de> | 2013-09-08 00:21:42 +0200 |
commit | 94fb9c240661a9cd2b7199a648e9c5b4f9b69e8d (patch) | |
tree | 2643bae10d797a9eed1d8849e3726e59a65ab03a /view | |
parent | 02fe2d488155b0907c950eb3118c523940c6827f (diff) | |
download | volse-hubzilla-94fb9c240661a9cd2b7199a648e9c5b4f9b69e8d.tar.gz volse-hubzilla-94fb9c240661a9cd2b7199a648e9c5b4f9b69e8d.tar.bz2 volse-hubzilla-94fb9c240661a9cd2b7199a648e9c5b4f9b69e8d.zip |
Service class
identity, follow, photo upload, att upload
Diffstat (limited to 'view')
-rwxr-xr-x | view/tpl/channels.tpl | 5 | ||||
-rwxr-xr-x | view/tpl/follow.tpl | 3 | ||||
-rwxr-xr-x | view/tpl/photos_upload.tpl | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/view/tpl/channels.tpl b/view/tpl/channels.tpl index 317384661..af6b36b1d 100755 --- a/view/tpl/channels.tpl +++ b/view/tpl/channels.tpl @@ -7,6 +7,11 @@ {{/foreach}} {{/if}} +{{if $channel_usage_message}} +<div id="channel-usage-message" class="usage-message"> +{{$channel_usage_message}} +</div> +{{/if}} {{if $selected}} <div id="selected-channel"> <div id="channels-selected">{{$msg_selected}}</div> diff --git a/view/tpl/follow.tpl b/view/tpl/follow.tpl index 350f8d910..b0597e9b6 100755 --- a/view/tpl/follow.tpl +++ b/view/tpl/follow.tpl @@ -4,5 +4,8 @@ <form action="follow" method="post" /> <input id="side-follow-url" type="text" name="url" size="24" title="{{$hint}}" /><input id="side-follow-submit" type="submit" name="submit" value="{{$follow}}" /> </form> + {{if $abook_usage_message}} + <div class="usage-message" id="abook-usage-message">{{$abook_usage_message}}</div> + {{/if}} </div> diff --git a/view/tpl/photos_upload.tpl b/view/tpl/photos_upload.tpl index 707024cb9..102c4d872 100755 --- a/view/tpl/photos_upload.tpl +++ b/view/tpl/photos_upload.tpl @@ -1,6 +1,6 @@ <h3>{{$pagename}}</h3> -<div id="photos-usage-message">{{$usage}}</div> +<div id="photos-usage-message" class="usage-message">{{$usage}}</div> <form action="photos/{{$nickname}}" enctype="multipart/form-data" method="post" name="photos-upload-form" id="photos-upload-form" > <input type="hidden" id="photos-upload-source" name="source" value="photos" /> |