MyAcc: Request to access platform- OK
[unfold.git] / portal / templates / account-view.html
index 5ef1350..7459a3c 100644 (file)
@@ -21,9 +21,9 @@
 {% endif %}
 
 
+<form id="editForm"  method="POST" action="account_process" enctype="multipart/form-data">
 <div id="middle" align="center">
        <div class="well">
-               <form id="editForm"  method="POST" action="account_process" enctype="multipart/form-data">
                {% csrf_token %}
                        <table class="profile">          
                        <tr class="odd">
                                </td>
                                </tr>
                        </table>
-               </form>
        </div>
 </div>
 
     </div>
 </div>
 
+<h2>Other Platforms</h2>
+<div id="middle" align="center">
+    <div class="well">
+        <table class="mytable"> 
+            <tr class="odd"> 
+                <th>Platforms</th> 
+                <th>Request Access</th>
+            </tr>   
+            {% for platform in platform_list %}         
+            <tr class="border_bottom">
+                <td class="odd"> {{ platform.platform_no_access }} </td>
+                <td class="even">
+                                       <button id="request_access" name= {{platform.platform_no_access}} type="submit" title="Request Access to this platform">Request {{platform.platform_no_access}}</button>
+                               </td>
+            </tr> 
+            {%endfor%}               
+        </table>
+    </div>
+</div>
+
+
+</form>