diff options
Diffstat (limited to 'tbc')
-rwxr-xr-x | tbc/templates/base.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tbc/templates/base.html b/tbc/templates/base.html index 5f19882..dca79d6 100755 --- a/tbc/templates/base.html +++ b/tbc/templates/base.html @@ -94,6 +94,7 @@ <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ user.first_name }}<b class="caret"></b></a> <ul class="dropdown-menu"> + <li><a href="{% url 'tbc:SubmitProposal' %}">Submit Proposal</a></li> <li><a href="{% url 'tbc:SubmitBook' %}">Submit Book</a></li> <li><a href="{% url 'tbc:UpdateBook' %}">Update Submission</a></li> <li><a href="{% url 'tbc:UpdatePassword' %}">Update Password</a></li> @@ -169,6 +170,15 @@ </center> <div class="clearfix"></div> {% endif %} + {% if proposal_submitted %} + <center> + <div class="alert" style="width:650px;height:40px;"> + <a class="close" data-dismiss="alert" href="#">×</a> + <p>Thank you for showing interest in contributing to Python TBC. <br>We have recevied your proposal. Please be patient we will get back to you within few days.</p> + </div> + </center> + <div class="clearfix"></div> + {% endif %} <div class="row-fluid"> <center><h3>Recent Submissions</h3></center> {% for item in items %} |