diff options
author | friendica <info@friendica.com> | 2015-01-15 14:05:18 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-15 14:05:18 -0800 |
commit | 1c9299ed4224d37716079be173d75319d2501b71 (patch) | |
tree | 27a72ac0d09bcb67bdea55a8d24f9fd7ea8f4b9d /view | |
parent | 56bc3bcdcee41d5ca6920c878aa8576dc673d039 (diff) | |
download | volse-hubzilla-1c9299ed4224d37716079be173d75319d2501b71.tar.gz volse-hubzilla-1c9299ed4224d37716079be173d75319d2501b71.tar.bz2 volse-hubzilla-1c9299ed4224d37716079be173d75319d2501b71.zip |
more backend work on poco rating
Diffstat (limited to 'view')
-rwxr-xr-x | view/tpl/abook_edit.tpl | 8 | ||||
-rwxr-xr-x | view/tpl/poco_entry_xml.tpl | 1 | ||||
-rw-r--r-- | view/tpl/rating_slider.tpl | 4 |
3 files changed, 13 insertions, 0 deletions
diff --git a/view/tpl/abook_edit.tpl b/view/tpl/abook_edit.tpl index 03b7e2440..c38cc8ffb 100755 --- a/view/tpl/abook_edit.tpl +++ b/view/tpl/abook_edit.tpl @@ -43,6 +43,14 @@ {{$slide}} {{/if}} + +{{if $rating}} +<h3>{{$lbl_rating}}</h3> + +{{$rating}} + +{{/if}} + {{/if}} diff --git a/view/tpl/poco_entry_xml.tpl b/view/tpl/poco_entry_xml.tpl index 869894852..30b6268dc 100755 --- a/view/tpl/poco_entry_xml.tpl +++ b/view/tpl/poco_entry_xml.tpl @@ -2,6 +2,7 @@ {{if $entry.id}}<id>{{$entry.id}}</id>{{/if}} {{if $entry.displayName}}<displayName>{{$entry.displayName}}</displayName>{{/if}} {{if $entry.preferredUsername}}<preferredUsername>{{$entry.preferredUsername}}</preferredUsername>{{/if}} +{{if $entry.rating}}<rating>{{$entry.rating}}</rating>{{/if}} {{if $entry.urls}}{{foreach $entry.urls as $url}}<urls><value>{{$url.value}}</value><type>{{$url.type}}</type></urls>{{/foreach}}{{/if}} {{if $entry.photos}}{{foreach $entry.photos as $photo}}<photos><value>{{$photo.value}}</value><type>{{$photo.type}}</type></photos>{{/foreach}}{{/if}} </entry> diff --git a/view/tpl/rating_slider.tpl b/view/tpl/rating_slider.tpl new file mode 100644 index 000000000..6bdb57cd1 --- /dev/null +++ b/view/tpl/rating_slider.tpl @@ -0,0 +1,4 @@ +<div id="rating-slider" class="slider" style="height: 32px; position: relative; left: 5%; width: 90%;"><input id="rating-range" type="text" name="fake-rating" value="{{$val}}" /></div> +<script> + $("#rating-range").jRange({ from: {{$min|default:'-10'}}, to: 10, step: 1, width:'100%', showLabels: false, onstatechange: function(v) { $("#contact-rating-mirror").val(v); } }); +</script> |