diff options
author | friendica <info@friendica.com> | 2013-08-21 22:10:08 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-21 22:10:08 -0700 |
commit | 925b046794b77345c1321a3c74e4561d5c10ec95 (patch) | |
tree | 607a59b59d7f60f2e6b615b5454758f76254cdf2 /view/tpl | |
parent | 6cea04eb440c2bb08bcb81ae13749c08d09b755c (diff) | |
download | volse-hubzilla-925b046794b77345c1321a3c74e4561d5c10ec95.tar.gz volse-hubzilla-925b046794b77345c1321a3c74e4561d5c10ec95.tar.bz2 volse-hubzilla-925b046794b77345c1321a3c74e4561d5c10ec95.zip |
premium/restricted channel connections implemented, configure at yoursite/channel/nickname - this basically redirects "follow" requests to a premium channel's sell page if it has one configured. You can still click through and create a connection request (introduction), but this provides a means for the channel owner to state their terms. If you don't abide by the terms, you will likely be blocked or the channel deleted. This facility is extensible in a number of ways.
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/sellpage_edit.tpl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/view/tpl/sellpage_edit.tpl b/view/tpl/sellpage_edit.tpl new file mode 100644 index 000000000..0a4726fb2 --- /dev/null +++ b/view/tpl/sellpage_edit.tpl @@ -0,0 +1,23 @@ +<h1>{{$header}}</h1> +<form id="sellpage-edit" action="connect/{{$address}}" method="post"> + +{{include file="field_checkbox.tpl" field=$premium}} + +<div class="descriptive-text">{{$desc}}</div> + +<div class="sellpage-editbody"> +<p id="sellpage-bodydesc" > +{{$lbl_about}} +</p> + +<textarea rows="10" cols="72" id="sellpage-textinp" name="text" >{{$text}}</textarea> + +</div> +<div id="sellpage-editbody-end"></div> + + +<div class="descriptive-text">{{$lbl2}}</div> +<div class="sellpage-final">{{$desc2}}</div> + +<input type="submit" name="submit" value="{{$submit}}" /> +</form> |