Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
djnro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
itminedu
djnro
Commits
b778f19c
Commit
b778f19c
authored
Oct 02, 2012
by
Leonidas Poulopoulos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Switched to table view for data
parent
edac002f
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
583 additions
and
966 deletions
+583
-966
static/css/style.css
static/css/style.css
+11
-0
templates/base.html
templates/base.html
+1
-0
templates/edumanage/institution.html
templates/edumanage/institution.html
+7
-40
templates/edumanage/institution_edit.html
templates/edumanage/institution_edit.html
+88
-175
templates/edumanage/servers.html
templates/edumanage/servers.html
+34
-49
templates/edumanage/servers_edit.html
templates/edumanage/servers_edit.html
+105
-210
templates/edumanage/services.html
templates/edumanage/services.html
+24
-49
templates/edumanage/services_edit.html
templates/edumanage/services_edit.html
+152
-270
templates/edumanage/welcome.html
templates/edumanage/welcome.html
+161
-173
No files found.
static/css/style.css
0 → 100644
View file @
b778f19c
.side-menu
>
li
>
a
{
border
:
1px
solid
#E5E5E5
;
display
:
block
;
margin
:
0
0
-1px
;
padding
:
8px
14px
;
}
.side-menu
>
li
:first-child
>
a
{
border-radius
:
6px
6px
0
0
;
}
\ No newline at end of file
templates/base.html
View file @
b778f19c
...
...
@@ -3,6 +3,7 @@
<head>
<title>
Eduroam 101 Template
</title>
<link
href=
"/static/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"/static/css/style.css"
rel=
"stylesheet"
>
<style
type=
"text/css"
>
body
{
padding-top
:
100px
;
...
...
templates/edumanage/institution.html
View file @
b778f19c
{% extends "
bas
e.html"%}
{% extends "
edumanage/welcom
e.html"%}
{% block content %}
<div
class=
"container-fluid"
>
<div
class=
"row-fluid"
>
<div
class=
"span3"
>
<div
class=
"sidebar-nav"
>
<ul
class=
"nav nav-tabs nav-stacked"
>
<li>
<a
href=
"{% url manage %}"
>
Home
</a>
</li>
<li
class=
"active"
>
<a
href=
"#"
>
Institution
</a>
</li>
<li>
<a
href=
"#"
>
Services
</a>
</li>
<li>
<a
href=
"#"
>
Servers
</a>
</li>
</ul>
</div>
<!--/.well -->
</div>
<!--/span-->
<div
class=
"span9"
>
<div
class=
"row-fluid"
>
<!--/span-->
<div
class=
"span12"
>
{% block homeactive %}{% endblock %}
{% block instactive %}class="active"{% endblock %}
{% block subcontent %}
<h4>
Institution
</h4>
{% load tolocale %}
{% if institution %}
...
...
@@ -47,16 +25,5 @@
{% else %}
<p>
No institution defined!
</p>
{% endif %}
</div>
<!--/span-->
</div>
<!--/row-->
</div>
<!--/span-->
</div>
<!--/row-->
<hr>
<footer>
<p>
©
Company 2012
</p>
</footer>
</div>
<!--/.fluid-container-->
{% endblock %}
\ No newline at end of file
{% endblock %}
\ No newline at end of file
templates/edumanage/institution_edit.html
View file @
b778f19c
{% extends "base.html"%}
{% extends "edumanage/welcome.html"%}
{% block homeactive %}{% endblock %}
{% block instactive %}class="active"{% endblock %}
{% block subcontent %}
<h4>
Institution
</h4>
{% load tolocale %}
<h5>
{% tolocale institution LANGUAGE_CODE%}
</h5>
<form
method=
"POST"
class=
"form-horizontal"
>
{% csrf_token %}
{% if form.non_field_errors %}
<p
class=
"error"
>
{{ form.non_field_errors}}
</p>
{% endif %}
<div
style=
"display: none"
>
{{form.institution}}
</div>
<div
class=
"control-group {% if form.ertype.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_ertype"
>
ErType
</label>
<div
class=
"controls"
>
{{ form.ertype }}
{% if form.ertype.errors %}
<span
class=
"help-inline"
>
{{ form.ertype.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.ertype.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.address_street.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_address_street"
>
Address Street
</label>
<div
class=
"controls"
>
{{ form.address_street }}
{% if form.address_street.errors %}
<span
class=
"help-inline"
>
{{ form.address_street.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.address_street.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.address_city.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_address_city"
>
Address City
</label>
<div
class=
"controls"
>
{{ form.address_city }}
{% if form.address_city.errors %}
<span
class=
"help-inline"
>
{{ form.address_city.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.address_city.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.contact.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_contact"
>
Contact(s)
</label>
<div
class=
"controls"
>
{{ form.contact }}
{% if form.contact.errors %}
<span
class=
"help-inline"
>
{{ form.ertype.contact|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.contact.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.url.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_url"
>
URL(s)
</label>
<div
class=
"controls"
>
{{ form.url }}
{% if form.url.errors %}
<span
class=
"help-inline"
>
{{ form.url.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.url.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.oper_name.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_oper_name"
>
Oper Name
</label>
<div
class=
"controls"
>
{{ form.oper_name }}
{% if form.oper_name.errors %}
<span
class=
"help-inline"
>
{{ form.oper_name.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.oper_name.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.number_user.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_number_user"
>
Number User
</label>
<div
class=
"controls"
>
{{ form.number_user }}
{% if form.number_user.errors %}
<span
class=
"help-inline"
>
{{ form.number_user.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.number_user.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.number_id.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_number_id"
>
Number Id
</label>
<div
class=
"controls"
>
{{ form.number_id }}
{% if form.number_id.errors %}
<span
class=
"help-inline"
>
{{ form.number_id.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.number_id.help_text }}
</span>
</div>
</div>
<div
class=
"control-group"
>
<div
class=
"controls"
>
<button
type=
"submit"
id=
"applybutton"
value=
"Apply"
class=
"btn btn-large btn-primary"
/>
Apply
</button>
</div>
</div>
</form>
{% block content %}
<div
class=
"container-fluid"
>
<div
class=
"row-fluid"
>
<div
class=
"span3"
>
<div
class=
"sidebar-nav"
>
<ul
class=
"nav nav-tabs nav-stacked"
>
<li>
<a
href=
"{% url manage %}"
>
Home
</a>
</li>
<li
class=
"active"
>
<a
href=
"#"
>
Institution
</a>
</li>
<li>
<a
href=
"#"
>
Services
</a>
</li>
<li>
<a
href=
"#"
>
Servers
</a>
</li>
</ul>
</div>
<!--/.well -->
</div>
<!--/span-->
<div
class=
"span9"
>
<div
class=
"row-fluid"
>
<!--/span-->
<div
class=
"span12"
>
<h4>
Institution
</h4>
{% load tolocale %}
<h5>
{% tolocale institution LANGUAGE_CODE%}
</h5>
<form
method=
"POST"
class=
"form-horizontal"
>
{% csrf_token %}
{% if form.non_field_errors %}
<p
class=
"error"
>
{{ form.non_field_errors}}
</p>
{% endif %}
<div
style=
"display: none"
>
{{form.institution}}
</div>
<div
class=
"control-group {% if form.ertype.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_ertype"
>
ErType
</label>
<div
class=
"controls"
>
{{ form.ertype }}
{% if form.ertype.errors %}
<span
class=
"help-inline"
>
{{ form.ertype.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.ertype.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.address_street.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_address_street"
>
Address Street
</label>
<div
class=
"controls"
>
{{ form.address_street }}
{% if form.address_street.errors %}
<span
class=
"help-inline"
>
{{ form.address_street.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.address_street.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.address_city.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_address_city"
>
Address City
</label>
<div
class=
"controls"
>
{{ form.address_city }}
{% if form.address_city.errors %}
<span
class=
"help-inline"
>
{{ form.address_city.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.address_city.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.contact.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_contact"
>
Contact(s)
</label>
<div
class=
"controls"
>
{{ form.contact }}
{% if form.contact.errors %}
<span
class=
"help-inline"
>
{{ form.ertype.contact|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.contact.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.url.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_url"
>
URL(s)
</label>
<div
class=
"controls"
>
{{ form.url }}
{% if form.url.errors %}
<span
class=
"help-inline"
>
{{ form.url.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.url.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.oper_name.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_oper_name"
>
Oper Name
</label>
<div
class=
"controls"
>
{{ form.oper_name }}
{% if form.oper_name.errors %}
<span
class=
"help-inline"
>
{{ form.oper_name.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.oper_name.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.number_user.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_number_user"
>
Number User
</label>
<div
class=
"controls"
>
{{ form.number_user }}
{% if form.number_user.errors %}
<span
class=
"help-inline"
>
{{ form.number_user.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.number_user.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.number_id.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_number_id"
>
Number Id
</label>
<div
class=
"controls"
>
{{ form.number_id }}
{% if form.number_id.errors %}
<span
class=
"help-inline"
>
{{ form.number_id.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.number_id.help_text }}
</span>
</div>
</div>
<div
class=
"control-group"
>
<div
class=
"controls"
>
<button
type=
"submit"
id=
"applybutton"
value=
"Apply"
class=
"btn btn-large btn-primary"
/>
Apply
</button>
</div>
</div>
</form>
{% endblock %}
</div>
<!--/span-->
</div>
<!--/row-->
</div>
<!--/span-->
</div>
<!--/row-->
<hr>
<footer>
<p>
©
Company 2012
</p>
</footer>
</div>
<!--/.fluid-container-->
{% endblock %}
\ No newline at end of file
templates/edumanage/servers.html
View file @
b778f19c
{% extends "
bas
e.html"%}
{% extends "
edumanage/welcom
e.html"%}
{% block content %}
<div
class=
"container-fluid"
>
<div
class=
"row-fluid"
>
<div
class=
"span3"
>
<div
class=
"sidebar-nav"
>
<ul
class=
"nav nav-tabs nav-stacked"
>
<li>
<a
href=
"{% url manage %}"
>
Home
</a>
</li>
<li>
<a
href=
"#"
>
Institution
</a>
</li>
<li>
<a
href=
"#"
>
Services
</a>
</li>
<li
class=
"active"
>
<a
href=
"#"
>
Servers
</a>
</li>
</ul>
</div>
<!--/.well -->
</div>
<!--/span-->
<div
class=
"span9"
>
<div
class=
"row-fluid"
>
<!--/span-->
<div
class=
"span12"
>
<h4>
Servers
</h4>
<div><a
href=
"{% url edit-servers %}"
>
Add new server
</a></div>
{% if servers %}
{% for server in servers %}
<div>
{{server}} (
<a
href=
"{% url edit-servers server.pk %}"
>
edit
</a>
)
</div>
{% endfor %}
{% else %}
<div>
No servers defined yet (
<a
href=
"{% url edit-servers %}"
>
add
</a>
)
</div>
{% endif %}
</div>
<!--/span-->
</div>
<!--/row-->
</div>
<!--/span-->
</div>
<!--/row-->
<hr>
{% block navbar %}
{% endblock %}
{% block homeactive %}{% endblock %}
{% block serversactive %}class="active"{% endblock %}
{% block subcontent %}
<footer>
<p>
©
Company 2012
</p>
</footer>
<h4>
My Servers
</h4>
<div><a
href=
"{% url edit-servers %}"
>
Add new server
</a></div>
{% if servers %}
<table
class=
"table .table-bordered"
>
<thead>
<tr>
<th>
Name
</th>
<th>
Action
</th>
<th>
Action
</th>
</tr>
</thead>
<tbody>
{% for server in servers %}
<tr>
<td>
{{server}}
</td>
<td><a
href=
"{% url edit-servers server.pk %}"
>
edit
</a>
</td><td><a
href=
"{% url edit-servers server.pk %}"
>
delete
</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<div>
No servers defined yet (
<a
href=
"{% url edit-servers %}"
>
add
</a>
)
</div>
{% endif %}
{% endblock %}
</div>
<!--/.fluid-container-->
{% endblock %}
\ No newline at end of file
templates/edumanage/servers_edit.html
View file @
b778f19c
{% extends "
bas
e.html"%}
{% extends "
edumanage/welcom
e.html"%}
{% block extrahead %}
<script
type=
"text/javascript"
src=
"/static/js/jquery.min.js"
></script>
<script
type=
"text/javascript"
...
...
@@ -8,212 +8,107 @@
{% endblock %}
{% block content %}
<div
class=
"container-fluid"
>
<div
class=
"row-fluid"
>
<div
class=
"span3"
>
<div
class=
"sidebar-nav"
>
<ul
class=
"nav nav-tabs nav-stacked"
>
<li>
<a
href=
"{% url manage %}"
>
Home
</a>
</li>
<li
class=
"active"
>
<a
href=
"#"
>
Institution
</a>
</li>
<li>
<a
href=
"#"
>
Services
</a>
</li>
<li>
<a
href=
"#"
>
Servers
</a>
</li>
</ul>
</div>
<!--/.well -->
</div>
<!--/span-->
<div
class=
"span9"
>
<div
class=
"row-fluid"
>
<!--/span-->
<div
class=
"span12"
>
<h4>
Servers
</h4>
<h5>
Server...
</h5>
<form
method=
"POST"
class=
"form-horizontal"
>
{% csrf_token %}
{% if form.non_field_errors %}
<p
class=
"error"
>
{{ form.non_field_errors}}
</p>
{% endif %}
<div
style=
"display: none"
>
{{form.instid}}
</div>
<div
class=
"control-group {% if form.ertype.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_ertype"
><b>
ErType
</b></label>
<div
class=
"controls"
>
{{ form.ertype }}
{% if form.ertype.errors %}
<span
class=
"help-inline"
>
{{ form.ertype.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.ertype.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.name.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_name"
><b>
name
</b></label>
<div
class=
"controls"
>
{{ form.name }}
{% if form.name.errors %}
<span
class=
"help-inline"
>
{{ form.name.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.name.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.host.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_host"
><b>
host
</b></label>
<div
class=
"controls"
>
{{ form.host }}
{% if form.host.errors %}
<span
class=
"help-inline"
>
{{ form.host.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.host.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.port.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_port"
><b>
port
</b></label>
<div
class=
"controls"
>
{{ form.port }}
{% if form.port.errors %}
<span
class=
"help-inline"
>
{{ form.port.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.port.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.acct_port.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_acct_port"
><b>
acct_port
</b></label>
<div
class=
"controls"
>
{{ form.acct_port }}
{% if form.acct_port.errors %}
<span
class=
"help-inline"
>
{{ form.acct_port.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.acct_port.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.timeout.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_timeout"
><b>
timeout
</b></label>
<div
class=
"controls"
>
{{ form.timeout }}
{% if form.timeout.errors %}
<span
class=
"help-inline"
>
{{ form.timeout.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.ertype.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.retry.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_retry"
><b>
retry
</b></label>
<div
class=
"controls"
>
{{ form.retry }}
{% if form.retry.errors %}
<span
class=
"help-inline"
>
{{ form.retry.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.retry.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.status_server.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_status_server"
>
status_server
</label>
<div
class=
"controls"
>
{{ form.status_server }}
{% if form.status_server.errors %}
<span
class=
"help-inline"
>
{{ form.status_server.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.status_server.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.secret.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_secret"
><b>
secret
</b></label>
<div
class=
"controls"
>
{{ form.secret }}
{% if form.secret.errors %}
<span
class=
"help-inline"
>
{{ form.secret.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.status_server.help_text }}
</span>
</div>
</div>
<div
class=
"control-group {% if form.proto.errors %} error {% endif %}"
>
<label
class=
"control-label"
for=
"id_proto"
><b>
proto
</b></label>
<div
class=
"controls"
>
{{ form.proto }}
{% if form.proto.errors %}
<span
class=
"help-inline"
>
{{ form.proto.errors|join:", " }}
</span>
{% endif %}
<span
class=
"help-block"
>
{{ form.proto.help_text }}
</span>
</div>
</div>
<div
class=
"control-group"
>
<div
class=
"controls"
>
<button
type=
"submit"
id=
"applybutton"
value=
"Apply"
class=
"btn btn-large btn-primary"
/>
Apply
</button>
</div>
</div>
</form>
</div>
<!--/span-->
</div>
<!--/row-->
</div>
<!--/span-->
</div>
<!--/row-->
<hr>
<footer>
<p>
©
Company 2012
</p>
</footer>