##// END OF EJS Templates
- Actualiza el patron, junto a la configuracion de antena Up y Down.
jsalyrosas -
r142:143
parent child
Show More
@@ -1,211 +1,237
1 1 from django.shortcuts import render_to_response, redirect
2 No newline at end of file
2 from abscontrol.models import Profile, Pattern No newline at end of file
3 3 No newline at end of file
4 4 txtAntenna = "[[0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5]," \ No newline at end of file
5 5 "[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]," \ No newline at end of file
6 6 "[0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5]," \ No newline at end of file
7 7 "[0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5]," \ No newline at end of file
8 8 "[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]," \ No newline at end of file
9 9 "[0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5]," \ No newline at end of file
10 10 "[1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0]," \ No newline at end of file
11 11 "[0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5]]" No newline at end of file
12 12 No newline at end of file
13 13 txtTxUp = "[[1,1,1,1,1,1,1,1]," \ No newline at end of file
14 14 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
15 15 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
16 16 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
17 17 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
18 18 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
19 19 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
20 20 "[1,1,1,1,1,1,1,1]]" No newline at end of file
21 21 No newline at end of file
22 22 txtTxDown = "[[1,1,1,1,0,0,0,0]," \ No newline at end of file
23 23 "[1,1,1,1,0,0,0,0]," \ No newline at end of file
24 24 "[1,1,1,1,0,0,0,0]," \ No newline at end of file
25 25 "[1,1,1,1,0,0,0,0]," \ No newline at end of file
26 26 "[0,0,0,0,1,1,1,1]," \ No newline at end of file
27 27 "[0,0,0,0,1,1,1,1]," \ No newline at end of file
28 28 "[0,0,0,0,1,1,1,1]," \ No newline at end of file
29 29 "[0,0,0,0,1,1,1,1]]" No newline at end of file
30 30 No newline at end of file
31 31 txtRxUp = "[[0,0,0,0,1,1,1,1]," \ No newline at end of file
32 32 "[0,0,0,0,1,1,1,1]," \ No newline at end of file
33 33 "[0,0,0,0,1,1,1,1]," \ No newline at end of file
34 34 "[0,0,0,0,1,1,1,1]," \ No newline at end of file
35 35 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
36 36 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
37 37 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
38 38 "[1,1,1,1,1,1,1,1]]" No newline at end of file
39 39 No newline at end of file
40 40 txtRxDown = "[[1,1,1,1,1,1,1,1]," \ No newline at end of file
41 41 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
42 42 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
43 43 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
44 44 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
45 45 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
46 46 "[1,1,1,1,1,1,1,1]," \ No newline at end of file
47 47 "[1,1,1,1,1,1,1,1]]" No newline at end of file
48 48 No newline at end of file
49 49 txtUes = "[0.533333,0.00000,1.06667,0.00000]" No newline at end of file
50 50 No newline at end of file
51 51 def index(request): No newline at end of file
52 52 #latest_poll_list = profileAntenna.objects.all().order_by('-pub_date')[:5] No newline at end of file
53 53 profile_list = Profile.objects.all() No newline at end of file
54 54 return render_to_response('abscontrol/index.html', {'profile_list': profile_list}) No newline at end of file
55 55 No newline at end of file
56 56 def new(request): No newline at end of file
57 57 profile_list = Profile.objects.all() No newline at end of file
58 58 No newline at end of file
59 59 return render_to_response('abscontrol/new.html', {'profile_list': profile_list, No newline at end of file
60 60 'txtAntenna' : txtAntenna, No newline at end of file
61 61 'txtUes' : txtUes, 'txtTxUp' : txtTxUp, No newline at end of file
62 62 'txtTxDown' : txtTxDown, 'txtRxUp' : txtRxUp, No newline at end of file
63 63 'txtRxDown' : txtRxDown, No newline at end of file
64 64 }) No newline at end of file
65 65 No newline at end of file
66 66 def save(request): No newline at end of file
67 67 No newline at end of file
68 68 txtProfile = request.POST["txtProfile"] No newline at end of file
69 69 No newline at end of file
70 70 txtAntennaUp = request.POST["txtAntennaUp"] No newline at end of file
71 71 txtTxUp = request.POST["txtTxUp"] No newline at end of file
72 72 txtRxUp = request.POST["txtRxUp"] No newline at end of file
73 73 txtUesUp = request.POST["txtUesUp"] No newline at end of file
74 74 No newline at end of file
75 75 txtAntennaDown = request.POST["txtAntennaDown"] No newline at end of file
76 76 txtTxDown = request.POST["txtTxDown"] No newline at end of file
77 77 txtRxDown = request.POST["txtRxDown"] No newline at end of file
78 78 txtUesDown = request.POST["txtUesDown"] No newline at end of file
79 79 No newline at end of file
80 80 newprofile = Profile(name=txtProfile) No newline at end of file
81 81 newprofile.save() No newline at end of file
82 82 No newline at end of file
83 83 newpattern = newprofile.pattern_set.create(value=1) No newline at end of file
84 84 newpattern.antennaup_set.create(value=txtAntennaUp,tx=txtTxUp,rx=txtRxUp,ues=txtUesUp) No newline at end of file
85 85 newpattern.antennadown_set.create(value=txtAntennaDown,tx=txtTxDown,rx=txtRxDown,ues=txtUesDown) No newline at end of file
86 86 No newline at end of file
87 87 newurl = '/abscontrol/view/%d' % newprofile.id No newline at end of file
88 88 No newline at end of file
89 89 return redirect(newurl) No newline at end of file
90 90 No newline at end of file
91 91 def view(request, profile_id): No newline at end of file
92 92 nextPattern = 0 No newline at end of file
93 93 No newline at end of file
94 94 if request.method == 'GET' and 'pattern' in request.GET: No newline at end of file
95 95 pattern_value = request.GET["pattern"] No newline at end of file
96 96 else: No newline at end of file
97 97 pattern_value = 1 No newline at end of file
98 98 No newline at end of file
99 99 profile_list = Profile.objects.all() No newline at end of file
100 100 objProfile = Profile.objects.get(pk=profile_id) No newline at end of file
101 101 No newline at end of file
102 102 lsPatterns = objProfile.pattern_set.all() No newline at end of file
103 103 patternChoosen = objProfile.pattern_set.get(value=pattern_value) No newline at end of file
104 104 objAntennaUp = patternChoosen.antennaup_set.get() No newline at end of file
105 105 objAntennaDown = patternChoosen.antennadown_set.get() No newline at end of file
106 106 No newline at end of file
107 107 if len(lsPatterns) > 1: No newline at end of file
108 108 if pattern_value == 1: No newline at end of file
109 109 nextValuePattern = pattern_value + 1 No newline at end of file
110 110 nextPattern = objProfile.pattern_set.get(value=nextValuePattern) No newline at end of file
111 111 No newline at end of file
112 112 No newline at end of file
113 113 return render_to_response('abscontrol/view.html', {'objProfile': objProfile, 'profile_list': profile_list, No newline at end of file
114 114 'patternChoosen' : patternChoosen, 'lsPatterns' : lsPatterns, No newline at end of file
115 115 'antennaUp' : objAntennaUp, 'antennaDown' : objAntennaDown, No newline at end of file
116 116 'nextPattern' : nextPattern, No newline at end of file
117 117 }) No newline at end of file
118 118 No newline at end of file
119 119 def edit(request, profile_id): No newline at end of file
120 120 if request.method == 'GET' and 'pattern' in request.GET: No newline at end of file
121 121 pattern_value = request.GET["pattern"] No newline at end of file
122 122 else: No newline at end of file
123 123 pattern_value = 1 No newline at end of file
124 124 No newline at end of file
125 125 profile_list = Profile.objects.all() No newline at end of file
126 126 objProfile = Profile.objects.get(pk=profile_id) No newline at end of file
127 127 No newline at end of file
128 128 lsPatterns = objProfile.pattern_set.all() No newline at end of file
129 129 patternChoosen = objProfile.pattern_set.get(value=pattern_value) No newline at end of file
130 130 objAntennaUp = patternChoosen.antennaup_set.get() No newline at end of file
131 131 objAntennaDown = patternChoosen.antennadown_set.get() No newline at end of file
132 132 No newline at end of file
133 133 return render_to_response('abscontrol/edit.html', {'objProfile': objProfile, 'profile_list': profile_list, No newline at end of file
134 134 'patternChoosen' : patternChoosen, 'lsPatterns' : lsPatterns, No newline at end of file
135 135 'antennaUp' : objAntennaUp, 'antennaDown' : objAntennaDown, No newline at end of file
136 136 }) No newline at end of file
137 137 No newline at end of file
138 138 def addPattern(request, profile_id): No newline at end of file
139 139 profile_list = Profile.objects.all() No newline at end of file
140 140 objProfile = Profile.objects.get(pk=profile_id) No newline at end of file
141 141 No newline at end of file
142 142 return render_to_response('abscontrol/addPattern.html', {'objProfile': objProfile, 'profile_list': profile_list, No newline at end of file
143 143 'txtAntenna' : txtAntenna, 'txtUes' : txtUes, No newline at end of file
144 144 'txtTxUp' : txtTxUp, 'txtTxDown' : txtTxDown, No newline at end of file
145 145 'txtRxUp' : txtRxUp, 'txtRxDown' : txtRxDown, No newline at end of file
146 146 }) No newline at end of file
147 147 No newline at end of file
148 148 def editPattern(request, profile_id, pattern_id): No newline at end of file
149 149 profile_list = Profile.objects.all() No newline at end of file
150 150 objProfile = Profile.objects.get(pk=profile_id) No newline at end of file
151 151 lsPatterns = objProfile.pattern_set.all() No newline at end of file
152 152 patternChoosen = Pattern.objects.get(pk=pattern_id) No newline at end of file
153 153 objAntennaUp = patternChoosen.antennaup_set.get() No newline at end of file
154 154 objAntennaDown = patternChoosen.antennadown_set.get() No newline at end of file
155 155 No newline at end of file
156 156 return render_to_response('abscontrol/editPattern.html', {'objProfile': objProfile, 'profile_list': profile_list, No newline at end of file
157 157 'patternChoosen' : patternChoosen, 'lsPatterns' : lsPatterns, No newline at end of file
158 158 'antennaUp' : objAntennaUp, 'antennaDown' : objAntennaDown, No newline at end of file
159 159 }) No newline at end of file
160 160 No newline at end of file
161 161 def savePattern(request, profile_id): No newline at end of file
162 pattern_id = 0
No newline at end of file
163 method = "save"
No newline at end of file
164
No newline at end of file
165 if 'pattern_id' in request.POST:
No newline at end of file
166 pattern_id = request.POST["pattern_id"]
No newline at end of file
167 method = "update"
No newline at end of file
168 No newline at end of file
162 169 maxValuePattern = 0 No newline at end of file
163 170 txtAntennaUp = request.POST["txtAntennaUp"] No newline at end of file
164 171 txtTxUp = request.POST["txtTxUp"] No newline at end of file
165 172 txtRxUp = request.POST["txtRxUp"] No newline at end of file
166 173 txtUesUp = request.POST["txtUesUp"] No newline at end of file
167 174 No newline at end of file
168 175 txtAntennaDown = request.POST["txtAntennaDown"] No newline at end of file
169 176 txtTxDown = request.POST["txtTxDown"] No newline at end of file
170 177 txtRxDown = request.POST["txtRxDown"] No newline at end of file
171 178 txtUesDown = request.POST["txtUesDown"] No newline at end of file
172 179 No newline at end of file
180 if method == "save": No newline at end of file
173 181 objProfile = Profile.objects.get(pk=profile_id) No newline at end of file
174 182 lsPatterns = objProfile.pattern_set.all() No newline at end of file
175 183 for element in lsPatterns: No newline at end of file
176 184 if element.value > maxValuePattern: No newline at end of file
177 185 maxPattern = element.value No newline at end of file
178 186 No newline at end of file
179 187 if maxPattern < 10 : No newline at end of file
180 188 newValuePattern = maxPattern + 1 No newline at end of file
181 189 newpattern = objProfile.pattern_set.create(value=newValuePattern) No newline at end of file
182 190 newpattern.antennaup_set.create(value=txtAntennaUp,tx=txtTxUp,rx=txtRxUp,ues=txtUesUp) No newline at end of file
183 191 newpattern.antennadown_set.create(value=txtAntennaDown,tx=txtTxDown,rx=txtRxDown,ues=txtUesDown) No newline at end of file
184 192 No newline at end of file
185 193 newurl = '/abscontrol/%d/view/%d' % (int(profile_id), newpattern.id) No newline at end of file
186 194 else: No newline at end of file
187 195 newurl = '/abscontrol/edit/%d' % (int(profile_id)) No newline at end of file
196 else:
No newline at end of file
197 txtAntennaUpId = request.POST["txtAntennaUpId"]
No newline at end of file
198 objAntennaUp = AntennaUp.objects.get(pk=txtAntennaUpId)
No newline at end of file
199 objAntennaUp.value = txtAntennaUp
No newline at end of file
200 objAntennaUp.tx = txtTxUp
No newline at end of file
201 objAntennaUp.rx = txtRxUp
No newline at end of file
202 objAntennaUp.ues = txtUesUp
No newline at end of file
203 objAntennaUp.save()
No newline at end of file
204
No newline at end of file
205 txtAntennaDownId = request.POST["txtAntennaDownId"]
No newline at end of file
206 objAntennaDown = AntennaDown.objects.get(pk=txtAntennaDownId)
No newline at end of file
207 objAntennaDown.value = txtAntennaDown
No newline at end of file
208 objAntennaDown.tx = txtTxDown
No newline at end of file
209 objAntennaDown.rx = txtRxDown
No newline at end of file
210 objAntennaDown.ues = txtUesDown
No newline at end of file
211 objAntennaDown.save()
No newline at end of file
212
No newline at end of file
213 newurl = '/abscontrol/%d/view/%d' % (int(profile_id), int(pattern_id)) No newline at end of file
188 214 No newline at end of file
189 215 return redirect(newurl) No newline at end of file
190 216 No newline at end of file
191 217 def viewPattern(request, profile_id, pattern_id): No newline at end of file
192 218 No newline at end of file
193 219 profile_list = Profile.objects.all() No newline at end of file
194 220 objProfile = Profile.objects.get(pk=profile_id) No newline at end of file
195 221 No newline at end of file
196 222 patternChoosen = Pattern.objects.get(pk=pattern_id) No newline at end of file
197 223 No newline at end of file
198 224 objAntennaUp = patternChoosen.antennaup_set.get() No newline at end of file
199 225 objAntennaDown = patternChoosen.antennadown_set.get() No newline at end of file
200 226 No newline at end of file
201 227 lsPatterns = objProfile.pattern_set.all() No newline at end of file
202 228 No newline at end of file
203 229 return render_to_response('abscontrol/viewPattern.html', {'objProfile': objProfile, 'profile_list': profile_list, No newline at end of file
204 230 'patternChoosen' : patternChoosen, 'lsPatterns' : lsPatterns, No newline at end of file
205 231 'antennaUp' : objAntennaUp, 'antennaDown' : objAntennaDown, No newline at end of file
206 232 }) No newline at end of file
207 233 No newline at end of file
208 234 def deletePattern(request, profile_id, pattern_id): No newline at end of file
209 235 newurl = '/abscontrol/edit/%d' % int(profile_id) No newline at end of file
210 236 No newline at end of file
211 237 return redirect(newurl) No newline at end of file
@@ -1,65 +1,64
1 1 {% extends "abscontrol/edit.html" %} No newline at end of file
2 2 No newline at end of file
3 3 {% block mnuPattern %} No newline at end of file
4 4 <div class="divMenu" id="divMnuPattern"> No newline at end of file
5 5 <nav class="MnuHorizontal"> No newline at end of file
6 6 <ul class="mnu" id="mnuPattern"> No newline at end of file
7 7 <li><a href="#" id="lnkSave">Save</a></li> No newline at end of file
8 8 <li><a href="#" id="lnkCancel">Cancel</a></li> No newline at end of file
9 9 </ul> No newline at end of file
10 10 </nav> No newline at end of file
11 11 </div> No newline at end of file
12 12 <div class="cleardivs"></div> No newline at end of file
13 13 {% endblock %} No newline at end of file
14 14 {% block pattern %} No newline at end of file
15 15 <div id="infoPattern"> No newline at end of file
16 16 <form action="/abscontrol/{{ objProfile.id }}/save/" id="frmPattern" method="post"> No newline at end of file
17 17 <div id="antennaUp"> No newline at end of file
18 18 <fieldset class="flsAntenna"> No newline at end of file
19 19 <legend>UP</legend> No newline at end of file
20 20 <div class="divAntenna"> No newline at end of file
21 21 <label for="lblAntenna">Antenna</label> No newline at end of file
22 22 <textarea name="txtAntennaUp" class="txtAntenna" cols="38" rows="8">{{ txtAntenna }}</textarea> No newline at end of file
23 23 </div> No newline at end of file
24 24 <div class="divTx"> No newline at end of file
25 25 <label for="lblTx">Tx</label> No newline at end of file
26 26 <textarea name="txtTxUp" class="txtTR" cols="20" rows="8">{{ txtTxUp }}</textarea> No newline at end of file
27 27 </div> No newline at end of file
28 28 <div class="divTx"> No newline at end of file
29 29 <label for="lblRx">Rx</label> No newline at end of file
30 30 <textarea name="txtRxUp" class="txtTR" cols="20" rows="8">{{ txtRxUp }}</textarea> No newline at end of file
31 31 </div> No newline at end of file
32 32 <div class="cleardivs"></div> No newline at end of file
33 33 <div class="divUes"> No newline at end of file
34 34 <label for="lblUes">Ues:</label> No newline at end of file
35 35 <input type="text" name="txtUesUp" value="{{ txtUes }}" /> No newline at end of file
36 36 </div> No newline at end of file
37 37 </fieldset> No newline at end of file
38 38 </div> No newline at end of file
39 39 <div id="antennaDown"> No newline at end of file
40 40 <fieldset class="flsAntenna"> No newline at end of file
41 41 <legend>DOWN</legend> No newline at end of file
42 42 <div class="divAntenna"> No newline at end of file
43 43 <label for="lblAntenna">Antenna</label> No newline at end of file
44 44 <textarea name="txtAntennaDown" class="txtAntenna" cols="38" rows="8">{{ txtAntenna }}</textarea> No newline at end of file
45 45 </div> No newline at end of file
46 46 <div class="divTx"> No newline at end of file
47 47 <label for="lblTx">Tx</label> No newline at end of file
48 48 <textarea name="txtTxDown" class="txtTR" cols="20" rows="8">{{ txtTxDown }}</textarea> No newline at end of file
49 49 </div> No newline at end of file
50 50 <div class="divTx"> No newline at end of file
51 51 <label for="lblRx">Rx</label> No newline at end of file
52 52 <textarea name="txtRxDown" class="txtTR" cols="20" rows="8">{{ txtRxDown }}</textarea> No newline at end of file
53 53 </div> No newline at end of file
54 54 <div class="cleardivs"></div> No newline at end of file
55 55 <div class="divUes"> No newline at end of file
56 56 <label for="lblUes">Ues:</label> No newline at end of file
57 57 <input type="text" name="txtUesDown" value="{{ txtUes }}" /> No newline at end of file
58 58 </div> No newline at end of file
59 59 </fieldset> No newline at end of file
60 60 </div>
No newline at end of file
61 <input type="hidden" name="pattern_id" id="pattern_id" value="0" /> No newline at end of file
62 61 <input type="hidden" name="profile_id" id="profile_id" value="{{ objProfile.id }}" /> No newline at end of file
63 62 </form> No newline at end of file
64 63 </div> No newline at end of file
65 64 {% endblock %} No newline at end of file
@@ -1,69 +1,73
1 1 {% extends "abscontrol/edit.html" %} No newline at end of file
2 2 No newline at end of file
3 3 {% block mnuPattern %} No newline at end of file
4 4 <div class="divMenu" id="divMnuPattern"> No newline at end of file
5 5 <nav class="MnuHorizontal"> No newline at end of file
6 6 <ul class="mnu" id="mnuPattern"> No newline at end of file
7 7 <li><a href="#" id="lnkSave">Save</a></li> No newline at end of file
8 8 <li><a href="#" id="lnkCancel">Cancel</a></li> No newline at end of file
9 9 </ul> No newline at end of file
10 10 </nav> No newline at end of file
11 11 </div> No newline at end of file
12 12 <div class="cleardivs"></div> No newline at end of file
13 13 {% endblock %} No newline at end of file
14 14 {% block pattern %} No newline at end of file
15 15 <div id="infoPattern"> No newline at end of file
16 16 {% if patternChoosen %} No newline at end of file
17 17 <div id="navPatterns"> No newline at end of file
18 18 <label for="lblValue">Pattern:</label> No newline at end of file
19 19 <label for="lblPatternValue">{{ patternChoosen.value }}</label> No newline at end of file
20 20 </div> No newline at end of file
21 21 {% endif %} No newline at end of file
22 <form action="/abscontrol/{{ objProfile.id }}/save/" id="frmPattern" method="post"> No newline at end of file
22 23 <div id="antennaUp"> No newline at end of file
23 24 <fieldset class="flsAntenna"> No newline at end of file
24 25 <legend>UP</legend> No newline at end of file
25 26 <div class="divAntenna"> No newline at end of file
26 27 <label for="lblAntenna">Antenna</label> No newline at end of file
27 28 <textarea name="txtAntennaUp" class="txtAntenna" cols="38" rows="8">{{ antennaUp.value }}</textarea> No newline at end of file
28 29 </div> No newline at end of file
29 30 <div class="divTx"> No newline at end of file
30 31 <label for="lblTx">Tx</label> No newline at end of file
31 32 <textarea name="txtTxUp" class="txtTR" cols="20" rows="8">{{ antennaUp.tx }}</textarea> No newline at end of file
32 33 </div> No newline at end of file
33 34 <div class="divTx"> No newline at end of file
34 35 <label for="lblRx">Rx</label> No newline at end of file
35 36 <textarea name="txtRxUp" class="txtTR" cols="20" rows="8">{{ antennaUp.rx }}</textarea> No newline at end of file
36 37 </div> No newline at end of file
37 38 <div class="cleardivs"></div> No newline at end of file
38 39 <div class="divUes"> No newline at end of file
39 40 <label for="lblUes">Ues:</label> No newline at end of file
40 41 <input type="text" name="txtUesUp" value="{{ antennaUp.ues }}" /> No newline at end of file
41 42 </div> No newline at end of file
43 <input type="hidden" name="txtAntennaUpId" value="{{ antennaUp.id }}" /> No newline at end of file
42 44 </fieldset> No newline at end of file
43 45 </div> No newline at end of file
44 46 <div id="antennaDown"> No newline at end of file
45 47 <fieldset class="flsAntenna"> No newline at end of file
46 48 <legend>DOWN</legend> No newline at end of file
47 49 <div class="divAntenna"> No newline at end of file
48 50 <label for="lblAntenna">Antenna</label> No newline at end of file
49 51 <textarea name="txtAntennaDown" class="txtAntenna" cols="38" rows="8">{{ antennaDown.value }}</textarea> No newline at end of file
50 52 </div> No newline at end of file
51 53 <div class="divTx"> No newline at end of file
52 54 <label for="lblTx">Tx</label> No newline at end of file
53 55 <textarea name="txtTxDown" class="txtTR" cols="20" rows="8">{{ antennaDown.tx }}</textarea> No newline at end of file
54 56 </div> No newline at end of file
55 57 <div class="divTx"> No newline at end of file
56 58 <label for="lblRx">Rx</label> No newline at end of file
57 59 <textarea name="txtRxDown" class="txtTR" cols="20" rows="8">{{ antennaDown.rx }}</textarea> No newline at end of file
58 60 </div> No newline at end of file
59 61 <div class="cleardivs"></div> No newline at end of file
60 62 <div class="divUes"> No newline at end of file
61 63 <label for="lblUes">Ues:</label> No newline at end of file
62 64 <input type="text" name="txtUesDown" value="{{ antennaDown.ues }}" /> No newline at end of file
63 65 </div> No newline at end of file
66 <input type="hidden" name="txtAntennaDownId" value="{{ antennaDown.id }}" /> No newline at end of file
64 67 </fieldset> No newline at end of file
65 68 </div> No newline at end of file
66 69 <input type="hidden" name="pattern_id" id="pattern_id" value="{{ patternChoosen.id }}" /> No newline at end of file
67 70 <input type="hidden" name="profile_id" id="profile_id" value="{{ objProfile.id }}" /> No newline at end of file
71 </form> No newline at end of file
68 72 </div> No newline at end of file
69 73 {% endblock %} No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now