Merge lp:~daker/loco-team-portal/fix.812613 into lp:loco-team-portal

Proposed by Adnane Belmadiaf
Status: Merged
Approved by: Chris Johnston
Approved revision: 471
Merged at revision: 471
Proposed branch: lp:~daker/loco-team-portal/fix.812613
Merge into: lp:loco-team-portal
Diff against target: 75 lines (+10/-10)
1 file modified
loco_directory/templates/venues/venue_detail_basic.inc.html (+10/-10)
To merge this branch: bzr merge lp:~daker/loco-team-portal/fix.812613
Reviewer Review Type Date Requested Status
Chris Johnston Approve
Review via email: mp+72511@code.launchpad.net

Commit message

Removed labels from Venue details

To post a comment you must log in.
Revision history for this message
Chris Johnston (cjohnston) wrote :

Approved

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'loco_directory/templates/venues/venue_detail_basic.inc.html'
2--- loco_directory/templates/venues/venue_detail_basic.inc.html 2010-11-27 03:36:17 +0000
3+++ loco_directory/templates/venues/venue_detail_basic.inc.html 2011-08-22 23:42:25 +0000
4@@ -3,61 +3,61 @@
5 {% if venue_object %}
6 {% if venue_object.name %}
7 <tr>
8- <th class="form-item-label" scope="row"><label>{% trans "Location name:" %}</label></th>
9+ <th class="form-item-label" scope="row">{% trans "Location name:" %}</th>
10 <td>{{ venue_object.name }}</td>
11 </tr>
12 {% endif %}
13 {% if venue_object.address %}
14 <tr>
15- <th class="form-item-label" scope="row"><label>{% trans "Address:" %}</label></th>
16+ <th class="form-item-label" scope="row">{% trans "Address:" %}</th>
17 <td class="form-item-value">{{ venue_object.address }}</td>
18 </tr>
19 {% endif %}
20 {% if venue_object.city %}
21 <tr>
22- <th class="form-item-label" scope="row"><label>{% trans "City:" %}</label></th>
23+ <th class="form-item-label" scope="row">{% trans "City:" %}</th>
24 <td class="form-item-value">{{ venue_object.city }}</td>
25 </tr>
26 {% endif %}
27 {% if venue_object.spr %}
28 <tr>
29- <th class="form-item-label" scope="row"><label>{% trans "State/Province/Region:" %}</label></th>
30+ <th class="form-item-label" scope="row">{% trans "State/Province/Region:" %}</th>
31 <td class="form-item-value">{{ venue_object.spr }}</td>
32 </tr>
33 {% endif %}
34 {% if venue_object.country %}
35 <tr>
36- <th class="form-item-label" scope="row"><label>{% trans "Country:" %}</label></th>
37+ <th class="form-item-label" scope="row">{% trans "Country:" %}</th>
38 <td class="form-item-value">{{ venue_object.country }}</td>
39 </tr>
40 {% endif %}
41 {% if venue_object.tz %}
42 <tr>
43- <th class="form-item-label" scope="row"><label>{% trans "Timezone:" %}</label></th>
44+ <th class="form-item-label" scope="row">{% trans "Timezone:" %}</th>
45 <td class="form-item-value">{{ venue_object.tz }}</td>
46 </tr>
47 {% endif %}
48 {% if venue_object.venue_url %}
49 <tr>
50- <th class="form-item-label" scope="row"><label>{% trans "Homepage:" %}</label></th>
51+ <th class="form-item-label" scope="row">{% trans "Homepage:" %}</th>
52 <td class="form-item-value"><a href="{{ venue_object.venue_url }}">{{ venue_object.venue_url }}</a></td>
53 </tr>
54 {% endif %}
55 {% if venue_object.longitude %}
56 <tr>
57- <th class="form-item-label" scope="row"><label>{% trans "Longitude:" %}</label></th>
58+ <th class="form-item-label" scope="row">{% trans "Longitude:" %}</th>
59 <td class="form-item-value">{{ venue_object.longitude }}</td>
60 </tr>
61 {% endif %}
62 {% if venue_object.latitude %}
63 <tr>
64- <th class="form-item-label" scope="row"><label>{% trans "Latitude:" %}</label></th>
65+ <th class="form-item-label" scope="row">{% trans "Latitude:" %}</th>
66 <td class="form-item-value">{{ venue_object.latitude }}</td>
67 </tr>
68 {% endif %}
69 {% if venue_object.comment %}
70 <tr>
71- <th class="form-item-label" scope="row"><label>{% trans "Comment:" %}</label></th>
72+ <th class="form-item-label" scope="row">{% trans "Comment:" %}</th>
73 <td class="form-item-value">{{ venue_object.comment|linebreaksbr }}</td>
74 </tr>
75 {% endif %}

Subscribers

People subscribed via source and target branches