1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-13 06:55:59 +00:00

[org] Update org trial page

This commit is contained in:
lian 2014-11-06 18:01:14 +08:00 committed by zhengxie
parent be48a92532
commit 8173f9a2d5
2 changed files with 62 additions and 3 deletions

View File

@ -39,6 +39,7 @@
</a>
{% block nav %}{% endblock %}
{% block header_right %}
{% if request.user.is_authenticated %}
<div class="fright">
{% if has_file_search %}
@ -91,8 +92,9 @@
</div>
{% endif %}
</div>
</div>
</div>
{% endif %}
{% endblock %}
</div>
</div>

View File

@ -1,6 +1,63 @@
{% extends "myhome_base.html" %}
{% load i18n %}
{% block main_panel %}
<h2 id="hd">Please finish the payment to continue. Thanks!</h2>
{% block nav %}{% endblock %}
{% block header_right %}
<a href="{{ SITE_ROOT }}accounts/logout/" class="logout" style="float:right; padding-top:10px;">{% trans "Log out" %}</a>
{% endblock %}
{% block sub_title %}{% trans "Plan" %} - {% endblock %}
{% block main_panel %}
<div id="plans">
<h3>Please finish the payment to continue. Thanks!</h3>
<table>
<tr>
<th width="40%"></th>
<th width="60%">Professional<br /><span class="price">$10/month</span></th>
</tr>
<tr>
<td class="item">Storage</td>
<td>100GB</td>
</tr>
<tr>
<td class="item">Number of Members</td>
<td>10</td>
</tr>
<tr>
<td class="item">Number of Groups</td>
<td>No limit</td>
</tr>
<tr>
<td></td>
<td><a href="#" class="buy" data-target="A">Buy or Renew</a></td>
</tr>
</table>
</div>
<form id="plan-form" method="post" action="{% url 'to_paypal' %}" class="hide">
{% csrf_token %}
<p>How many months would you like to buy?</p>
<input type="hidden" name="email" value="{{request.user.username}}" />
<input type="hidden" name="plan" value="A" />
<input type="radio" name="months" value="3" checked="checked" class="vam" /> <span class="vam options">3</span>
<input type="radio" name="months" value="6" class="vam" /> <span class="vam options">6</span>
<input type="radio" name="months" value="12" class="vam" /> <span class="vam options">12</span>
<br/>
<input type="submit" value="Submit" class="submit" />
</form>
{% endblock %}
{% block extra_script %}
<script type="text/javascript">
$(".buy").click(function() {
$('#plan-form').modal({appendTo: '#main', autoResize: true});
$('#simplemodal-container').css({'width':'auto', 'height': 'auto'});
return false;
});
$('#plans tr').unbind();
</script>
{% endblock %}