diff options
author | Zach Prezkuta <fermion@gmx.com> | 2013-01-06 14:42:51 -0700 |
---|---|---|
committer | Zach Prezkuta <fermion@gmx.com> | 2013-01-06 15:57:11 -0700 |
commit | a0d19ffb7241a1c7a4b85e6d0fd58fbb2f718468 (patch) | |
tree | 280d792355cb2e60cf62e8451b6d8afbbfcc7c0d /view/tpl/smarty3/intros.tpl | |
parent | 61b8ea9e1af74e2056e18b02c170a899de9abd1b (diff) | |
download | volse-hubzilla-a0d19ffb7241a1c7a4b85e6d0fd58fbb2f718468.tar.gz volse-hubzilla-a0d19ffb7241a1c7a4b85e6d0fd58fbb2f718468.tar.bz2 volse-hubzilla-a0d19ffb7241a1c7a4b85e6d0fd58fbb2f718468.zip |
implement Smarty3
Diffstat (limited to 'view/tpl/smarty3/intros.tpl')
-rw-r--r-- | view/tpl/smarty3/intros.tpl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/view/tpl/smarty3/intros.tpl b/view/tpl/smarty3/intros.tpl new file mode 100644 index 000000000..6132bfc75 --- /dev/null +++ b/view/tpl/smarty3/intros.tpl @@ -0,0 +1,28 @@ + +<div class="intro-wrapper" id="intro-{{$contact_id}}" > + +<p class="intro-desc">{{$str_notifytype}} {{$notify_type}}</p> +<div class="intro-fullname" id="intro-fullname-{{$contact_id}}" >{{$fullname}}</div> +<a class="intro-url-link" id="intro-url-link-{{$contact_id}}" href="{{$url}}" ><img id="photo-{{$contact_id}}" class="intro-photo" src="{{$photo}}" width="175" height=175" title="{{$fullname}}" alt="{{$fullname}}" /></a> +<div class="intro-knowyou">{{$knowyou}}</div> +<div class="intro-note" id="intro-note-{{$contact_id}}">{{$note}}</div> +<div class="intro-wrapper-end" id="intro-wrapper-end-{{$contact_id}}"></div> +<form class="intro-form" action="notifications/{{$intro_id}}" method="post"> +<input class="intro-submit-ignore" type="submit" name="submit" value="{{$ignore}}" /> +<input class="intro-submit-discard" type="submit" name="submit" value="{{$discard}}" /> +</form> +<div class="intro-form-end"></div> + +<form class="intro-approve-form" action="dfrn_confirm" method="post"> +{{include file="field_checkbox.tpl" field=$hidden}} +{{include file="field_checkbox.tpl" field=$activity}} +<input type="hidden" name="dfrn_id" value="{{$dfrn_id}}" > +<input type="hidden" name="intro_id" value="{{$intro_id}}" > +<input type="hidden" name="contact_id" value="{{$contact_id}}" > + +{{$dfrn_text}} + +<input class="intro-submit-approve" type="submit" name="submit" value="{{$approve}}" /> +</form> +</div> +<div class="intro-end"></div> |