Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
94
Merge Requests
10
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
704e21f5
authored
Apr 29, 2013
by
Bence Dányi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
firewall_gui: list domains
parent
54651ea8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
51 additions
and
1 deletions
+51
-1
cloud/urls.py
+1
-0
firewall_gui/static/js/project.js
+1
-1
firewall_gui/static/partials/domain-list.html
+34
-0
firewall_gui/views.py
+15
-0
No files found.
cloud/urls.py
View file @
704e21f5
...
...
@@ -100,4 +100,5 @@ urlpatterns = patterns('',
url
(
r'^firewall/vlangroups/$'
,
'firewall_gui.views.list_vlangroups'
),
url
(
r'^firewall/hostgroups/$'
,
'firewall_gui.views.list_hostgroups'
),
url
(
r'^firewall/firewalls/$'
,
'firewall_gui.views.list_firewalls'
),
url
(
r'^firewall/domains/$'
,
'firewall_gui.views.list_domains'
),
)
firewall_gui/static/js/project.js
View file @
704e21f5
...
...
@@ -5,7 +5,7 @@
* and the `/static/partials/rule-list.html` template will be used.
* @type {Array}
*/
var
listControllers
=
[
'rule'
,
'host'
,
'vlan'
,
'vlangroup'
,
'hostgroup'
,
'firewall'
];
var
listControllers
=
[
'rule'
,
'host'
,
'vlan'
,
'vlangroup'
,
'hostgroup'
,
'firewall'
,
'domain'
];
var
module
=
angular
.
module
(
'firewall'
,
[]).
config
(
[
'$routeProvider'
,
function
(
$routeProvider
)
{
...
...
firewall_gui/static/partials/domain-list.html
0 → 100644
View file @
704e21f5
<div
class=
"navbar"
>
<div
class=
"navbar-inner"
>
<div
class=
"pagination pull-left"
>
<ul>
<li
ng-click=
"prevPage()"
ng-class=
"{disabled: page == 1}"
><a
href
>
Előző
</a></li>
<li
ng-repeat=
"_page in pages"
ng-click=
"setPage(_page)"
ng-class=
"{active: _page == page}"
>
<a
href
>
{{_page}}
</a>
</li>
<li
ng-click=
"nextPage()"
ng-class=
"{disabled: page == pages.length}"
><a
href
>
Next
</a></li>
</ul>
</div>
<form
class=
"navbar-search"
style=
"margin: 20px"
>
<input
type=
"text"
class=
"search-query"
placeholder=
"Search"
ng-model=
"query"
>
</form>
</div>
</div>
<table
class=
"table table-striped"
>
<tr>
<th>
Név
</th>
<th>
TTL
</th>
<th>
Leírás
</th>
<th
colspan=
"2"
>
Tulajdonos
</th>
</tr>
<tr
ng-repeat=
"domain in getPage()"
>
<td><a
href=
"#/domains/{{domain.id}}"
>
{{domain.name}}
</a></td>
<td>
{{domain.ttl}}
</td>
<td>
{{domain.description}}
</td>
<td>
{{domain.owner.name}}
</td>
<td>
<a
class=
"btn"
href=
"#/domains/{{domain.id}}/"
>
Szerkesztés
</a>
<a
class=
"btn btn-danger"
href=
"#/domains/{{domain.id}}/delete/"
>
Törlés
</a>
</td>
</tr>
</table>
firewall_gui/views.py
View file @
704e21f5
...
...
@@ -132,3 +132,18 @@ def list_firewalls(request):
"name"
:
firewall
.
name
,
}
for
firewall
in
Firewall
.
objects
.
all
()]
return
HttpResponse
(
json
.
dumps
(
firewalls
),
content_type
=
"application/json"
)
def
list_domains
(
request
):
domains
=
[{
"id"
:
domain
.
id
,
"name"
:
domain
.
name
,
"created_at"
:
domain
.
created_at
.
isoformat
(),
"modified_at"
:
domain
.
modified_at
.
isoformat
(),
"ttl"
:
domain
.
ttl
,
"description"
:
domain
.
description
,
"owner"
:
{
"id"
:
domain
.
owner
.
id
,
"name"
:
str
(
domain
.
owner
)
}
}
for
domain
in
Domain
.
objects
.
all
()]
return
HttpResponse
(
json
.
dumps
(
domains
),
content_type
=
"application/json"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment