1 {% extends "layout.html" %}
5 <script src="{{ STATIC_URL }}js/jquery-ui.js"></script>
6 <script src="{{ STATIC_URL }}js/jquery-ui-combobox.js"></script>
7 <link rel='stylesheet' type='text/css' href="{{ STATIC_URL }}css/jquery-ui.css">
8 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/jquery.ui.combobox.css">
11 <div class="col-md-12">
12 <ul class="nav nav-tabs nav-section">
13 <li class="active"><a href="#existing">Join existing Project</a></li>
14 <li><a href="#new">Create new Project</a></li>
22 <div class="col-md-12">
24 {% for error in errors %}
32 <div class="container tab-content">
34 <div class="tab-pane active" id="existing">
36 <div class="col-md-6">
37 <h3>Join an existing Project</h3>
39 <div class="col-md-6">
40 <h3>List of projects you are part of</h3>
44 <div class="col-md-6">
45 <form role="form" method="post" action="/portal/project_request">
47 <div id="project_loading" style="display:inline;"><img src="{{ STATIC_URL }}img/loading.gif" alt="Loading projects" /></div>
48 <select id="projects" name="project_name" style="display:none;"></select> <div style="display:none;" id="projects_button"><input type="submit" id="join" name="join" value="Join" class="btn"/></div>
51 <div class="col-md-6">
52 <table class="table project-list">
53 {% for pending in pending_projects %}
54 <tr><td>(PENDING) {{ pending.project_name }}</td><td>{{ pending.authority_hrn }}</td><td>{{ pending.created|date:"d/m/Y" }}</td></tr>
56 {% for pending in pending_join_projects %}
57 <tr><td>(PENDING JOIN) {{ pending.project_name }}</td><td> </td><td>{{ pending.created|date:"d/m/Y" }}</td></tr>
65 <div class="tab-pane" id="new">
67 <div class="col-md-12">
68 <h3>Create a new Project</h3>
74 <div class="col-md-12">
75 <form role="form" method="post" action="/portal/project_request">
77 <div class="form-group">
78 <input type="text" name="project_name" value="" style="width:380px;" placeholder="Name" required>
80 <div class="form-group">
81 <select id="org_name" name="authority_name" class="form-control" style="width:380px" value="{{ organization }}" required>
83 {% for authority in authorities %}
84 {% if authority.name %}
85 <option value="{{ authority.authority_hrn }}" {% if authority.authority_hrn == authority_hrn %}selected{% endif %}>{{authority.name}}</option>
87 <option value="{{ authority.authority_hrn }}" {% if authority.authority_hrn == authority_hrn %}selected{% endif %}>{{authority.authority_hrn}}</option>
95 <div class="form-group">
96 <textarea id="purpose" name="purpose" class="form-control" rows="6" placeholder="Description" style="width:380px" title="Purpose of your project (informative)" required="required"></textarea>
98 <button type="submit" class="btn btn-onelab"><span class="glyphicon glyphicon-plus"></span> Send Request</button>
108 $(document).ready(function() {
109 var myprojects = JSON.parse(localStorage.getItem('projects'));
110 console.log(myprojects);
112 $.each(myprojects, function (i, val){
114 $('.project-list').append('<tr><td>'+ val +'</td></tr>');
117 $('.project-list').html('<tr><td>no projetcs</td></tr>');
120 $('.nav-tabs a').click(function (e) {
124 $.post("/rest/myslice:authority/",{'fields':['authority_hrn','pi_users'],'filters':{'authority_hrn':'CONTAINS{{ root_authority_hrn }}' }}, function( data ) {
127 project_row = "<option value=''> - </option>";
128 projects.push(project_row);
130 $.each( data, function( key, val ) {
131 if(val.authority_hrn.split('.').length > 2){
132 if($.inArray(val.authority_hrn, myprojects)==-1){
133 project_row = "<option value='"+val.authority_hrn+"'>"+val.authority_hrn+"</option>";
134 projects.push(project_row);
138 $("#projects").show();
139 $("#projects_button").css('margin-left', '50px');
140 $("#projects_button").css('display', 'inline-block');
141 $("#project_loading").hide();
142 $("#projects").html(projects.join( "" ));
143 $("#projects").combobox();
147 $("#authority_hrn").load("/rest/user/", {"fields" : ["parent_authority"], "filters": {"user_hrn": "{{ user_hrn }}"}}, function(data) {
148 var jsonData = JSON.parse(data);
149 $(this).attr("value", jsonData[0]['parent_authority']);
151 $("#authority_hrn").val("{{authority_name}}");
152 var availableTags = [
154 {% for authority in authorities %}
155 {% if authority.name %}
156 {value:"{{ authority.name }}",label:"{{authority.name}}"},
157 // to show only full name
159 {value:"{{ authority.authority_hrn }}",label:"{{authority.authority_hrn}}"},
163 {value:"",label:"No authority found !!!"}
167 availableTags.sort(function(a,b){
168 var nameA=a.value.toLowerCase(), nameB=b.value.toLowerCase();
177 $( "#authority_hrn" ).autocomplete({
178 source: availableTags,
180 select: function( event, ui ) {console.log(jQuery(this));}
183 $("#submit_pi").click(function() {
184 localStorage.clear();
186 // auto-complete the form
187 jQuery("#org_name").combobox();