Revision 373232623266 () - Diff

Link to this snippet: https://friendpaste.com/4Z2bikQnCVXQ1EKh1Puq9B
Embed:
1
22
3
41
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
def view_rp(request, slug, envt, status, datacenter):
envt_template = 'cyclo/rp_ville_'+status+'.txt'

stown = Town.objects.get(slug=slug);
if envt =="prod":
for rp in stown.prod_rp.all():
if rp.datacenter.slug == datacenter:
rpwwwip = rp.http_www
rpaboip = rp.https_abo

frontal_ip_list =[]
for frontal in stown.prod_frontal.all():
if frontal.datacenter.slug == datacenter:
frontal_ip_list.append(frontal.ip)
elif envt == "preprod":
for rp in stown.preprod_rp.all():
if rp.datacenter.slug == datacenter:
rpwwwip = rp.http_www
rpaboip = rp.https_abo

frontal_ip_list =[]
for frontal in stown.preprod_frontal.all():
if frontal.datacenter.slug == datacenter:
frontal_ip_list.append(frontal.ip)
elif envt == "vabf":
for rp in stown.vabf_rp.all():
if rp.datacenter.slug == datacenter:
rpwwwip = rp.http_www
rpaboip = rp.https_abo

frontal_ip_list =[]
for frontal in stown.vabf_frontal.all():
if frontal.datacenter.slug == datacenter:
frontal_ip_list.append(frontal.ip)
return object_detail(
request,
queryset = Town.objects.all(),
slug= slug,
template_name = envt_template,
mimetype='text/plain',
extra_context = {
"rpwwwip": rpwwwip,
"rpaboip": rpaboip,
"frontal_ip_list": frontal_ip_list,
}
)