Merge lp:~cjohnston/loco-team-portal/theme-update into lp:loco-team-portal

Proposed by Chris Johnston
Status: Merged
Approved by: Adnane Belmadiaf
Approved revision: 535
Merged at revision: 533
Proposed branch: lp:~cjohnston/loco-team-portal/theme-update
Merge into: lp:loco-team-portal
Diff against target: 3593 lines (+1191/-1113)
58 files modified
loco_directory/media/css/newstyle.css (+0/-696)
loco_directory/media/css/styles.css (+683/-0)
loco_directory/settings.py (+2/-2)
loco_directory/templates/404.html (+4/-4)
loco_directory/templates/500.html (+4/-3)
loco_directory/templates/about.html (+15/-14)
loco_directory/templates/about_loco.html (+10/-7)
loco_directory/templates/base.html (+34/-30)
loco_directory/templates/events/event_history_list.html (+10/-8)
loco_directory/templates/events/event_list.html (+16/-14)
loco_directory/templates/events/global_event_delete_confirm.html (+5/-3)
loco_directory/templates/events/global_event_detail.html (+4/-4)
loco_directory/templates/events/global_event_detail.inc.html (+10/-6)
loco_directory/templates/events/global_event_new.html (+5/-3)
loco_directory/templates/events/global_event_update.html (+5/-3)
loco_directory/templates/events/global_jam_dashboard.html (+91/-93)
loco_directory/templates/events/team_event_comment_new.html (+4/-4)
loco_directory/templates/events/team_event_delete_confirm.html (+5/-3)
loco_directory/templates/events/team_event_detail.html (+6/-6)
loco_directory/templates/events/team_event_detail.inc.html (+10/-7)
loco_directory/templates/events/team_event_list.inc.html (+1/-1)
loco_directory/templates/events/team_event_new.html (+5/-3)
loco_directory/templates/events/team_event_new_select.html (+4/-2)
loco_directory/templates/events/team_event_register.html (+5/-3)
loco_directory/templates/events/team_event_update.html (+5/-3)
loco_directory/templates/index.html (+11/-15)
loco_directory/templates/irc_chat.html (+6/-5)
loco_directory/templates/loco_council.html (+4/-4)
loco_directory/templates/loco_setup.html (+10/-8)
loco_directory/templates/login_failure.html (+3/-2)
loco_directory/templates/meetings/agenda_item_delete_confirm.html (+6/-4)
loco_directory/templates/meetings/agenda_item_new.html (+6/-4)
loco_directory/templates/meetings/agenda_item_update.html (+7/-5)
loco_directory/templates/meetings/meeting_history_list.html (+5/-4)
loco_directory/templates/meetings/meeting_list.html (+6/-4)
loco_directory/templates/meetings/team_meeting_delete_confirm.html (+5/-3)
loco_directory/templates/meetings/team_meeting_detail.html (+5/-5)
loco_directory/templates/meetings/team_meeting_detail.inc.html (+12/-6)
loco_directory/templates/meetings/team_meeting_new.html (+5/-3)
loco_directory/templates/meetings/team_meeting_new_select.html (+4/-2)
loco_directory/templates/meetings/team_meeting_update.html (+5/-3)
loco_directory/templates/site_search.html (+18/-12)
loco_directory/templates/teams/merge_teams.html (+4/-4)
loco_directory/templates/teams/my_teams.html (+8/-7)
loco_directory/templates/teams/select_other_team.html (+4/-3)
loco_directory/templates/teams/team_detail.html (+14/-16)
loco_directory/templates/teams/team_event_history.html (+6/-5)
loco_directory/templates/teams/team_event_list.html (+8/-8)
loco_directory/templates/teams/team_list.html (+16/-9)
loco_directory/templates/teams/team_meeting_history.html (+6/-4)
loco_directory/templates/teams/team_meeting_list.html (+7/-5)
loco_directory/templates/teams/team_reapprovals.html (+11/-13)
loco_directory/templates/teams/team_update.html (+9/-6)
loco_directory/templates/using_locodir.html (+16/-8)
loco_directory/templates/venues/venue_detail.html (+5/-3)
loco_directory/templates/venues/venue_detail.inc.html (+6/-4)
loco_directory/templates/venues/venue_list.html (+5/-4)
loco_directory/templates/venues/venue_update.html (+5/-3)
To merge this branch: bzr merge lp:~cjohnston/loco-team-portal/theme-update
Reviewer Review Type Date Requested Status
Adnane Belmadiaf Approve
Review via email: mp+108713@code.launchpad.net

Commit message

Updates LTP to use the new branding guidelines

To post a comment you must log in.
Revision history for this message
Adnane Belmadiaf (daker) wrote :

1- index.html : remove <hr class="divide" />
2- Replace .current css class with .active in the nav-primary & nav-secondary divs
3- /events/venues/add/ has a big blank at the bottom
4- /events/history/ :
  * Remove <hr class="divide" />
  * The second table is getting outside the page
5- The nav-secondary links should be #333
6- The form title is getting outside the div
7- /teams/<lp_id>/ seems to be a bit broken

review: Needs Fixing
Revision history for this message
Chris Johnston (cjohnston) wrote :

1- Done
2- Done.. Still doesn't work.. Secondary div's don't need active because the
3- This is because of: <section class="minor-content alone venue-map" id="venue-map-selector" title="Select venue position">&nbsp;</section>

I don't really know what to do

4- a. done b. hmm... not quite sure what to do.. There is a bunch of data that is causing it to run over
5- it is... core.css
6- done
7- this will need some help.. not sure what to do as I'm not a CSS person.

Revision history for this message
Adnane Belmadiaf (daker) wrote :

Move the the active class <li id="main-nav" class="active">
Replace :
  <script src="/ubuntu-website/media/js/modernizr.min.js"></script>
  <script src="//code.jquery.com/jquery-1.7.2.min.js"></script>
with:
  <script type="text/javascript" src="/ubuntu-website/media/js/modernizr.min.js"></script>
  <script type="text/javascript" src="//code.jquery.com/jquery-1.7.2.min.js"></script>
Two jQuery versions are called on the same page (hosted one/local one).

review: Needs Fixing
532. By Adnane Belmadiaf

* Merged Robert's fix for filtering events

Revision history for this message
Chris Johnston (cjohnston) wrote :

The li is done, the jquery is in lp:ubuntu-community-webthemes/light-django-theme and needs to be updated there

533. By Chris Johnston

Updates menu li

534. By Chris Johnston

further corrections

535. By Chris Johnston

update url for styles

Revision history for this message
Adnane Belmadiaf (daker) wrote :

Looks good to me but we still need to fix some issues.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== removed file 'loco_directory/media/css/newstyle.css'
2--- loco_directory/media/css/newstyle.css 2012-06-10 19:08:39 +0000
3+++ loco_directory/media/css/newstyle.css 1970-01-01 00:00:00 +0000
4@@ -1,696 +0,0 @@
5-/*
6- * newstyle.css
7- *
8- * Base style for the LoCo Team Portal. This is an implementation
9- * of the ( at the time of this writing ) new Ubuntu branding.
10- *
11- * Author: Michael Hall ( mhall119 )
12- * Author: Paul Tagliamonte ( paultag )
13- */
14-
15-h1.centered {
16- text-align: center;
17-}
18-
19-a {
20- color: #DD4814;
21-}
22-
23-a:visited {
24- color: #b12a10;
25-}
26-
27-th.form-item-label {
28- vertical-align: top;
29-}
30-
31-td.no-wrap {
32- white-space: nowrap;
33-}
34-
35-/*
36-label {
37- font-weight: bold;
38- white-space: nowrap;
39-}
40-*/
41-
42-.minor-content.venue-map {
43- min-height: 350px;
44- margin-top: 60px;
45-}
46-
47-.side-content.venue-map {
48- min-height: 250px;
49- margin-top: 60px;
50-}
51-
52-#main-content {
53- margin-right: 20px;
54-}
55-
56-li.col_left {
57- float: left;
58- width: 45%;
59- clear: left;
60-}
61-
62-li.col_right {
63- float: right;
64- width: 45%;
65- clear: right;
66-}
67-
68-li.float_list {
69- float: left;
70- margin: 0px 0px 0px 25px;
71- clear: left;
72-}
73-
74-li.approved {
75- list-style-image: url(../img/approved.png); /* Colorful Ubuntu Logo */
76-}
77-
78-li.unapproved {
79- list-style-image: url(../img/unapproved.png); /* Grey Ubuntu Logo */
80-}
81-
82-ol.agenda-list, .agenda-list ol, .agenda-list li {
83- padding: 2px 10px !important;
84-}
85-
86-.relative {
87- position: relative;
88-}
89-
90-br.clear {
91- clear: left;
92-}
93-
94-#main-content .object-detail {
95- -moz-border-radius: 15px;
96- -webkit-border-radius: 15px;
97-
98- border: 2px solid #ccc;
99- border-bottom: 4px solid #bbb;
100- border-right: 4px solid #bbb;
101- border-top: 2px solid #ddd;
102- min-height: 500px;
103- text-align: left;
104-}
105-
106-#main-content .object-detail #options-left ul {
107- position: relative;
108- left: -60px;
109-}
110-
111-#main-content .object-detail #options-right ul {
112- position: relative;
113-}
114-
115-#main-content .object-detail #options-left li {
116- float: left;
117- margin-left: 5px;
118- display: inline;
119-}
120-
121-#main-content .object-detail #options-right li {
122- float: right;
123- margin-right: 5px;
124- text-align: right;
125- display: inline;
126-}
127-
128-#main-content .object-detail .option {
129- width: 32px;
130- height: 32px;
131- display: block;
132- text-decoration: none;
133-}
134-
135-#main-content .object-detail a.goback {
136- background: transparent url('../img/goback.png') no-repeat scroll top right;
137-}
138-
139-#main-content .object-detail a.edit {
140- background: transparent url('../img/edit.png') no-repeat scroll top right;
141-}
142-
143-#main-content .object-detail a.delete {
144- background: transparent url('../img/delete.png') no-repeat scroll top right;
145-}
146-
147-#main-content .object-detail a.add-team-event {
148- background: transparent url('../img/new_event.png') no-repeat scroll top right;
149-}
150-
151-#main-content .object-detail a.add-comment {
152- background: transparent url('../img/comment.png') no-repeat scroll top right;
153-}
154-
155-.resource {
156- width: 32px;
157- height: 32px;
158- padding: 2px;
159- margin-top: 4px;
160- margin-bottom: 3px;
161- float: left;
162- border: 1px white solid;
163-}
164-
165-#main-content .resource:hover {
166- border: 1px #eee solid;
167-}
168-
169-#page-footer .container div.copyright {
170- font-size: 0.75em;
171- line-height: 1.5em;
172-}
173-
174-#page-footer .container div.loggedin {
175- font-size: 0.75em;
176- line-height: 1.5em;
177- float: left;
178- width: 400px;
179- margin-bottom: 10px;
180- margin-top: 5px;
181-}
182-
183-#page-footer .container div.lang_switcher {
184- font-size: 0.75em;
185- line-height: 1.5em;
186- float: right;
187- margin-bottom: 10px;
188- margin-top: 5px;
189- margin-right: 14px;
190-}
191-
192-.team-event-nav {
193- border-bottom: 1px gray solid;
194- list-style: none;
195- padding: 1px 0px 1px 5px;
196- margin: 5px 0px 5px 0px;
197-}
198-
199-.team-event-nav li {
200- list-style: none;
201- margin: -1px 2px 0px 3px;
202- padding: 0px;
203- display: inline;
204-}
205-
206-.message .content-shim {
207- margin: 0px; /* buffer the bulb in */
208- padding: 5px; /* un-suck the text */
209- background-repeat: no-repeat;
210- background-image: url(../img/infobox-icon.png);
211- padding-left: 30px; /* infobox icon is 22x22 */
212-}
213-
214-.message {
215- width: 70%;
216- margin-left: auto;
217- margin-right: auto;
218- background-color: #FFFFB6;
219- border-radius: 0px;
220- box-shadow: 0px 1px 1px #FFE4B6;
221-}
222-
223-.message { /* noncss 3. XXX: remove me in 20 years. */
224- -webkit-border-radius: 8px;
225- -moz-border-radius: 8px;
226- -moz-box-shadow: 0px 0px 1px #FFE4B6;
227- -webkit-box-shadow: 0px 0px 1px #FFE4B6;
228-}
229-
230-/* UI Errors ( To yell at the user when they don't fill out a form ) */
231-
232-/*
233-ul.errorlist {
234- margin: 0px;
235- padding: 0px;
236-}
237-
238-.errorlist li {
239- color: red;
240- font-weight: bold;
241- display: block;
242- font-size: 1.1em;
243- margin: 0px 0px 3px;
244- padding: 4px 5px;
245-}
246-*/
247-
248-
249-/* Flickr Feed for Global Event */
250-
251-.thumbs {
252- margin: 0px;
253- padding: 0px;
254- overflow: hidden;
255-}
256-
257-.thumbs li {
258- list-style: none;
259- float: left;
260- margin: 5px;
261- padding: 3px;
262- background: #eee;
263- -moz-box-shadow: 0px 0px 4px #444;
264- -webkit-box-shadow: 0px 0px 2px #000;
265-}
266-
267-.thumbs li a { }
268-.thumbs li img { display: block; }
269-.thumbs li a img { border: none;}
270-
271-aside#top-nav {
272- width: 980px;
273-}
274-
275-header#page-header {
276- width: 960px;
277- margin: 0px auto;
278- padding: 0px 10px;
279- position: relative;
280-}
281-
282-footer#page-footer {
283- width: 960px;
284- margin: 0px auto;
285- padding: 0px 10px;
286- position: relative;
287-}
288-
289-#page-footer div.container { width: 940px; }
290-
291-
292-
293-/*#venue-list ul,*/
294-.venue-list{
295- overflow:auto;
296-}
297-
298-
299-.venue-list h3 {
300- color: #333;
301- padding: 10px 0px 10px 10px;
302- background: white url(/ubuntu-website/media/images/dotted.png) repeat scroll 0px 0px;
303- margin-bottom: 0;
304-}
305-
306-.venue-list ul {
307- display: block;
308- float: left;
309- list-style-image: none;
310- list-style-type: none;
311- padding: 4px 0px 5px 5px;
312- text-indent: 0px;
313- width: 915px;
314- background-color:#F7F7F7;
315-}
316-
317-.venue-list ul li {
318- list-style-image: none;
319- list-style-type: none;
320- text-indent: 0px;
321- width: 200px;
322- margin-right: 22px;
323- margin-bottom: 5px;
324- padding-left: 5px;
325- float: left;
326- font-size:12px;
327-}
328-
329-.venue-list ul li h3{
330- padding: 0px;
331- background:#f7f6f5;
332- margin: 0px;
333- color: #333;
334- padding: 4px 0px;
335-}
336-
337-
338-.venue-list ul li p{
339- font-size: 12px;
340- line-height: 16px;
341- margin: 0px;
342- padding: 0px;
343-}
344-
345-.venue-list ul li p a{
346- border-bottom: 1px dotted #333;
347- clear: both;
348- display: block;
349- float: none;
350- padding: 5px 0px 3px;
351-}
352-
353-#site_search_form {
354- width: auto;
355-}
356-#site_search_form input#id_q {
357- background-color: #F0F0F0;
358- border: 1px solid #CCCCCC;
359- height: 16px;
360- margin: 7px 0 7px 9px;
361- padding: 3px;
362- width: 180px;
363-}
364-
365-form[name="lang-switcher"] {
366- width: auto;
367-}
368-
369-select[name="lang"] {
370- background: auto;
371- border: auto;
372- width: auto;
373- height: auto;
374- font-size: 1em;
375- margin: 0;
376-}
377-
378-/* TODO: date_begin and date_end should have class .small */
379-#id_date_begin_0, #id_date_begin_1, #id_date_end_0, #id_date_end_1 {
380- width: 134px;
381-}
382-#id_date_begin_0:focus, #id_date_begin_1:focus, #id_date_end_0:focus, #id_date_end_1:focus {
383- width: 132px;
384-}
385-/*
386-.form {
387- width: 500px;
388- float:left;
389-}
390-
391-.form div{
392- padding-top:2px;
393- padding-bottom:2px;
394-}
395-
396-.form div span.help{
397- font-size:20px;
398- color: #DD4814;
399- cursor:pointer;
400- vertical-align: top;
401- display:inline;
402-
403-}
404-
405-.form input[type="text"], .form textarea, .form select {
406- padding: 5px;
407- width: 200px;
408- margin: 0px 0px 5px 0px;
409- border: 1px solid #ccc;
410-}
411-
412-.form input[type="text"] {
413- margin-right: 10px;
414-}
415-
416-.form input[type="checkbox"] {
417- width: 200px;
418- height:35px;
419- margin: 0px 0px 5px 0px;
420-}
421-
422-.form div div.field {
423- float: left;
424- padding-top: 5px;
425-}
426-
427-.form div.approved, .form div.approved_date, .form div.expires_date {
428- height:30px;
429-}
430-
431-.form span.extra {
432- float: left;
433- padding-top: 5px;
434- font-size:0.8em;
435-}
436-
437-.form div div.field label{
438- float: left;
439- padding-right: 10px;
440- width: 170px;
441- font-size: 0.8em;
442- text-align: right;
443- font-weight:normal;
444-}
445-
446-.form div span.required {
447- font-size:20px;
448- color: red;
449- margin-left:5px;
450- vertical-align: top;
451- display:inline;
452-}
453-
454-.form textarea {
455- height: 90px;
456- width: 270px;
457-}
458-
459-
460-.form select:focus, .form textarea:focus, .form input:focus {
461- border: 1px solid #900;
462-}
463-
464-.form input.submit-button {
465- padding-left: 20px;
466- padding-right: 20px;
467- float: right;
468- margin-right: 50px;
469-}
470-
471-.form ul.errorlist {
472- margin: 0px;
473- padding: 0px;
474-}
475-
476-.form .errorlist li {
477- color: red;
478- font-weight: bold;
479- display: block;
480- font-size: 0.8em;
481- margin: 0px 130px 3px;
482- padding: 4px 5px;
483-}
484-*/
485-
486-.attendee-cell {
487- padding-top:10px;
488-}
489-
490-.attendee-mugshot {
491- vertical-align: middle;
492-}
493-
494-.agenda-list {
495- list-style-type: decimal;
496-}
497-
498-.agenda-list .agenda-list {
499- margin-left: 20px;
500- list-style-type: lower-alpha;
501-}
502-
503-.agenda-list .agenda-list .agenda-list {
504- list-style-type: lower-roman;
505-}
506-
507-.agenda-list .agenda-list .agenda-list .agenda-list {
508- list-style-type: circle;
509-}
510-
511-.agenda-title {
512- font-weight: bold;
513-}
514-
515-.agenda-description {
516- margin-left: 30px;
517- font-size: 0.9em;
518-}
519-
520-#webchat {
521- display: none;
522- width: 900px;
523- margin: 0 auto;
524-}
525-
526-#ircchat {
527- display: block;
528- width: 900px;
529- margin: 0 auto;
530-}
531-
532-#locobranding {
533- width: 96px;
534- height: 96px;
535- position: absolute;
536- right: 10px;
537-}
538-
539-/* My Teams style */
540-h2.dynamic-width {
541- display: inline-block;
542- margin-bottom: 0;
543-}
544-
545-.resources {
546- font-size: 0.75em;
547- float: right;
548- margin-top: 21px;
549-}
550-
551-.resources a {
552- margin-left: 8px;
553-}
554-
555-.photo a {
556- display: inline-block;
557- padding: 7px;
558-}
559-
560-.photo img {
561- width: 75px;
562-}
563-
564-.main-content-split {
565- width:450px;
566- margin-top: 15px;
567-}
568-
569-.main-content-split.left {
570- float: left;
571-}
572-
573-.main-content-split.right {
574- float: right;
575-}
576-
577-.main-content-split.left .title {
578- font-size: 0.875em;
579-}
580-
581-.main-content-split.left .new {
582- float: right;
583- font-size: 0.75em;
584-}
585-
586-.event-summary {
587- margin-top:15px;
588-}
589-
590-hr.no-top {
591- margin: 0 0;
592-}
593-
594-img.bottom {
595- vertical-align: bottom;
596-}
597-
598-ul.indent {
599- list-style: none;
600- background-color: #F7F7F7;
601- padding: 2px 2px 2px 15px;
602-}
603-
604-ul.indent li {
605- line-height:1.2em;
606- margin: 0.5em 0;
607-}
608-
609-.teams-legend {
610- width:200px;
611- padding:5px 0;
612- margin:5px 40% 0;
613- float:right;
614- text-align:right;
615- background-color:#F7F7F7;
616- box-shadow:0 1px 1px #DFDFDF;
617- border-radius:8px;
618-}
619-
620-/* Team photos feed */
621-div#flickr, div#picasa, div#pixie {
622- width:100%;
623-}
624-
625-div#flickr a.lightbox img {
626- border: 5px solid #b3aaa4;
627- margin-left: 5px;
628- margin-right: 5px;
629-}
630-
631-div#picasa a.lightbox img {
632- border: 5px solid #b3aaa4;
633- margin-left: 5px;
634- margin-right: 5px;
635-}
636-
637-div#pixie a.lightbox img {
638- border: 5px solid #b3aaa4;
639- margin-left: 5px;
640- margin-right: 5px;
641-
642-}
643-
644-.double-side-content {
645- float: left;
646- margin: 5px 10px;
647- padding: 10px;
648- width: 600px;
649-}
650-
651-.double-side-column {
652- float: left;
653- width: 600px;
654-}
655-
656-.single-side-column {
657- float: left;
658- width: 300px;
659-}
660-
661-.map {
662- min-height: 170px;
663- width: 250px;
664-}
665-
666-/* Blog Styling */
667-.blog-entry-image {
668- float: left;
669- height: 40px;
670- padding: 0 8px 8px 0;
671-}
672-
673-.blog-entry-title {
674- margin-bottom: 0px;
675-}
676-
677-.blog-entry-author {
678- font-size: 0.75em;
679-}
680-
681-.blog-entry-text p {
682- text-align:justify;
683- font-size: 13px;
684- line-height: 1.4;
685-}
686-
687-.rsvp-link {
688- font-size: 0.8em;
689- font-weight: bold;
690-}
691-
692-table.side-table {
693- width: 280px;
694-}
695-
696-table.left {
697- position:relative;
698- top: 10px;
699- left:-180px;
700-}
701
702=== added file 'loco_directory/media/css/styles.css'
703--- loco_directory/media/css/styles.css 1970-01-01 00:00:00 +0000
704+++ loco_directory/media/css/styles.css 2012-06-15 22:38:18 +0000
705@@ -0,0 +1,683 @@
706+/*
707+ * newstyle.css
708+ *
709+ * Base style for the LoCo Team Portal. This is an implementation
710+ * of the ( at the time of this writing ) new Ubuntu branding.
711+ *
712+ * Author: Michael Hall ( mhall119 )
713+ * Author: Paul Tagliamonte ( paultag )
714+ */
715+
716+h1.centered {
717+ text-align: center;
718+}
719+
720+
721+th.form-item-label {
722+ vertical-align: top;
723+}
724+
725+td.no-wrap {
726+ white-space: nowrap;
727+}
728+
729+/*
730+label {
731+ font-weight: bold;
732+ white-space: nowrap;
733+}
734+*/
735+
736+.minor-content.venue-map {
737+ min-height: 350px;
738+ margin-top: 60px;
739+}
740+
741+.side-content.venue-map {
742+ min-height: 250px;
743+ margin-top: 60px;
744+}
745+
746+#main-content {
747+ margin-right: 20px;
748+}
749+
750+li.col_left {
751+ float: left;
752+ width: 45%;
753+ clear: left;
754+}
755+
756+li.col_right {
757+ float: right;
758+ width: 45%;
759+ clear: right;
760+}
761+
762+li.float_list {
763+ float: left;
764+ margin: 0px 0px 0px 25px;
765+ clear: left;
766+}
767+
768+li.approved {
769+ list-style-image: url(../img/approved.png); /* Colorful Ubuntu Logo */
770+}
771+
772+li.unapproved {
773+ list-style-image: url(../img/unapproved.png); /* Grey Ubuntu Logo */
774+}
775+
776+ol.agenda-list, .agenda-list ol, .agenda-list li {
777+ padding: 2px 10px !important;
778+}
779+
780+.relative {
781+ position: relative;
782+}
783+
784+br.clear {
785+ clear: left;
786+}
787+
788+#main-content .object-detail {
789+ -moz-border-radius: 15px;
790+ -webkit-border-radius: 15px;
791+
792+ border: 2px solid #ccc;
793+ border-bottom: 4px solid #bbb;
794+ border-right: 4px solid #bbb;
795+ border-top: 2px solid #ddd;
796+ min-height: 500px;
797+ text-align: left;
798+}
799+
800+#main-content .object-detail #options-left ul {
801+ position: relative;
802+ left: -60px;
803+}
804+
805+#main-content .object-detail #options-right ul {
806+ position: relative;
807+}
808+
809+#main-content .object-detail #options-left li {
810+ float: left;
811+ margin-left: 5px;
812+ display: inline;
813+}
814+
815+#main-content .object-detail #options-right li {
816+ float: right;
817+ margin-right: 5px;
818+ text-align: right;
819+ display: inline;
820+}
821+
822+#main-content .object-detail .option {
823+ width: 32px;
824+ height: 32px;
825+ display: block;
826+ text-decoration: none;
827+}
828+
829+#main-content .object-detail a.goback {
830+ background: transparent url('../img/goback.png') no-repeat scroll top right;
831+}
832+
833+#main-content .object-detail a.edit {
834+ background: transparent url('../img/edit.png') no-repeat scroll top right;
835+}
836+
837+#main-content .object-detail a.delete {
838+ background: transparent url('../img/delete.png') no-repeat scroll top right;
839+}
840+
841+#main-content .object-detail a.add-team-event {
842+ background: transparent url('../img/new_event.png') no-repeat scroll top right;
843+}
844+
845+#main-content .object-detail a.add-comment {
846+ background: transparent url('../img/comment.png') no-repeat scroll top right;
847+}
848+
849+.resource {
850+ width: 32px;
851+ height: 32px;
852+ padding: 2px;
853+ margin-top: 4px;
854+ margin-bottom: 3px;
855+ float: left;
856+ border: 1px white solid;
857+}
858+
859+#main-content .resource:hover {
860+ border: 1px #eee solid;
861+}
862+
863+#page-footer .container div.copyright {
864+ font-size: 0.75em;
865+ line-height: 1.5em;
866+}
867+
868+#page-footer .container div.loggedin {
869+ font-size: 0.75em;
870+ line-height: 1.5em;
871+ float: left;
872+ width: 400px;
873+ margin-bottom: 10px;
874+ margin-top: 5px;
875+}
876+
877+#page-footer .container div.lang_switcher {
878+ font-size: 0.75em;
879+ line-height: 1.5em;
880+ float: right;
881+ margin-bottom: 10px;
882+ margin-top: 5px;
883+ margin-right: 14px;
884+}
885+
886+.team-event-nav {
887+ border-bottom: 1px gray solid;
888+ list-style: none;
889+ padding: 1px 0px 1px 5px;
890+ margin: 5px 0px 5px 0px;
891+}
892+
893+.team-event-nav li {
894+ list-style: none;
895+ margin: -1px 2px 0px 3px;
896+ padding: 0px;
897+ display: inline;
898+}
899+
900+.message .content-shim {
901+ margin: 0px; /* buffer the bulb in */
902+ padding: 5px; /* un-suck the text */
903+ background-repeat: no-repeat;
904+ background-image: url(../img/infobox-icon.png);
905+ padding-left: 30px; /* infobox icon is 22x22 */
906+}
907+
908+.message {
909+ width: 70%;
910+ margin-left: auto;
911+ margin-right: auto;
912+ background-color: #FFFFB6;
913+ border-radius: 0px;
914+ box-shadow: 0px 1px 1px #FFE4B6;
915+}
916+
917+.message { /* noncss 3. XXX: remove me in 20 years. */
918+ -webkit-border-radius: 8px;
919+ -moz-border-radius: 8px;
920+ -moz-box-shadow: 0px 0px 1px #FFE4B6;
921+ -webkit-box-shadow: 0px 0px 1px #FFE4B6;
922+}
923+
924+/* UI Errors ( To yell at the user when they don't fill out a form ) */
925+
926+/*
927+ul.errorlist {
928+ margin: 0px;
929+ padding: 0px;
930+}
931+
932+.errorlist li {
933+ color: red;
934+ font-weight: bold;
935+ display: block;
936+ font-size: 1.1em;
937+ margin: 0px 0px 3px;
938+ padding: 4px 5px;
939+}
940+*/
941+
942+
943+/* Flickr Feed for Global Event */
944+
945+.thumbs {
946+ margin: 0px;
947+ padding: 0px;
948+ overflow: hidden;
949+}
950+
951+.thumbs li {
952+ list-style: none;
953+ float: left;
954+ margin: 5px;
955+ padding: 3px;
956+ background: #eee;
957+ -moz-box-shadow: 0px 0px 4px #444;
958+ -webkit-box-shadow: 0px 0px 2px #000;
959+}
960+
961+.thumbs li a { }
962+.thumbs li img { display: block; }
963+.thumbs li a img { border: none;}
964+
965+aside#top-nav {
966+ width: 980px;
967+}
968+
969+header#page-header {
970+ width: 960px;
971+ margin: 0px auto;
972+ padding: 0px 10px;
973+ position: relative;
974+}
975+
976+footer#page-footer {
977+ width: 960px;
978+ margin: 0px auto;
979+ padding: 0px 10px;
980+ position: relative;
981+}
982+
983+#page-footer div.container { width: 940px; }
984+
985+
986+
987+/*#venue-list ul,*/
988+.venue-list{
989+ overflow:auto;
990+}
991+
992+
993+.venue-list h3 {
994+ color: #333;
995+ padding: 10px 0px 10px 10px;
996+ background: white url(/ubuntu-website/media/images/dotted.png) repeat scroll 0px 0px;
997+ margin-bottom: 0;
998+}
999+
1000+.venue-list ul {
1001+ display: block;
1002+ float: left;
1003+ list-style-image: none;
1004+ list-style-type: none;
1005+ padding: 4px 0px 5px 5px;
1006+ text-indent: 0px;
1007+ width: 915px;
1008+ background-color:#F7F7F7;
1009+}
1010+
1011+.venue-list ul li {
1012+ list-style-image: none;
1013+ list-style-type: none;
1014+ text-indent: 0px;
1015+ width: 200px;
1016+ margin-right: 22px;
1017+ margin-bottom: 5px;
1018+ padding-left: 5px;
1019+ float: left;
1020+ font-size:12px;
1021+}
1022+
1023+.venue-list ul li h3{
1024+ padding: 0px;
1025+ background:#f7f6f5;
1026+ margin: 0px;
1027+ color: #333;
1028+ padding: 4px 0px;
1029+}
1030+
1031+
1032+.venue-list ul li p{
1033+ font-size: 12px;
1034+ line-height: 16px;
1035+ margin: 0px;
1036+ padding: 0px;
1037+}
1038+
1039+.venue-list ul li p a{
1040+ border-bottom: 1px dotted #333;
1041+ clear: both;
1042+ display: block;
1043+ float: none;
1044+ padding: 5px 0px 3px;
1045+}
1046+
1047+#site_search_form {
1048+ width: auto;
1049+}
1050+#site_search_form input#id_q {
1051+ background-color: #F0F0F0;
1052+ border: 1px solid #CCCCCC;
1053+ height: 16px;
1054+ margin: 7px 0 7px 9px;
1055+ padding: 3px;
1056+ width: 180px;
1057+}
1058+
1059+form[name="lang-switcher"] {
1060+ width: auto;
1061+}
1062+
1063+select[name="lang"] {
1064+ background: auto;
1065+ border: auto;
1066+ width: auto;
1067+ height: auto;
1068+ font-size: 1em;
1069+ margin: 0;
1070+}
1071+
1072+/* TODO: date_begin and date_end should have class .small */
1073+#id_date_begin_0, #id_date_begin_1, #id_date_end_0, #id_date_end_1 {
1074+ width: 134px;
1075+}
1076+#id_date_begin_0:focus, #id_date_begin_1:focus, #id_date_end_0:focus, #id_date_end_1:focus {
1077+ width: 132px;
1078+}
1079+/*
1080+.form {
1081+ width: 500px;
1082+ float:left;
1083+}
1084+
1085+.form div{
1086+ padding-top:2px;
1087+ padding-bottom:2px;
1088+}
1089+
1090+.form div span.help{
1091+ font-size:20px;
1092+ color: #DD4814;
1093+ cursor:pointer;
1094+ vertical-align: top;
1095+ display:inline;
1096+
1097+}
1098+
1099+.form input[type="text"], .form textarea, .form select {
1100+ padding: 5px;
1101+ width: 200px;
1102+ margin: 0px 0px 5px 0px;
1103+ border: 1px solid #ccc;
1104+}
1105+
1106+.form input[type="text"] {
1107+ margin-right: 10px;
1108+}
1109+
1110+.form input[type="checkbox"] {
1111+ width: 200px;
1112+ height:35px;
1113+ margin: 0px 0px 5px 0px;
1114+}
1115+
1116+.form div div.field {
1117+ float: left;
1118+ padding-top: 5px;
1119+}
1120+
1121+.form div.approved, .form div.approved_date, .form div.expires_date {
1122+ height:30px;
1123+}
1124+
1125+.form span.extra {
1126+ float: left;
1127+ padding-top: 5px;
1128+ font-size:0.8em;
1129+}
1130+
1131+.form div div.field label{
1132+ float: left;
1133+ padding-right: 10px;
1134+ width: 170px;
1135+ font-size: 0.8em;
1136+ text-align: right;
1137+ font-weight:normal;
1138+}
1139+
1140+.form div span.required {
1141+ font-size:20px;
1142+ color: red;
1143+ margin-left:5px;
1144+ vertical-align: top;
1145+ display:inline;
1146+}
1147+
1148+.form textarea {
1149+ height: 90px;
1150+ width: 270px;
1151+}
1152+
1153+
1154+.form select:focus, .form textarea:focus, .form input:focus {
1155+ border: 1px solid #900;
1156+}
1157+
1158+.form input.submit-button {
1159+ padding-left: 20px;
1160+ padding-right: 20px;
1161+ float: right;
1162+ margin-right: 50px;
1163+}
1164+
1165+.form ul.errorlist {
1166+ margin: 0px;
1167+ padding: 0px;
1168+}
1169+
1170+.form .errorlist li {
1171+ color: red;
1172+ font-weight: bold;
1173+ display: block;
1174+ font-size: 0.8em;
1175+ margin: 0px 130px 3px;
1176+ padding: 4px 5px;
1177+}
1178+*/
1179+
1180+.attendee-cell {
1181+ padding-top:10px;
1182+}
1183+
1184+.attendee-mugshot {
1185+ vertical-align: middle;
1186+}
1187+
1188+.agenda-list {
1189+ list-style-type: decimal;
1190+}
1191+
1192+.agenda-list .agenda-list {
1193+ margin-left: 20px;
1194+ list-style-type: lower-alpha;
1195+}
1196+
1197+.agenda-list .agenda-list .agenda-list {
1198+ list-style-type: lower-roman;
1199+}
1200+
1201+.agenda-list .agenda-list .agenda-list .agenda-list {
1202+ list-style-type: circle;
1203+}
1204+
1205+.agenda-title {
1206+ font-weight: bold;
1207+}
1208+
1209+.agenda-description {
1210+ margin-left: 30px;
1211+ font-size: 0.9em;
1212+}
1213+
1214+#webchat {
1215+ display: none;
1216+ width: 900px;
1217+ margin: 0 auto;
1218+}
1219+
1220+#ircchat {
1221+ display: block;
1222+ width: 900px;
1223+ margin: 0 auto;
1224+}
1225+
1226+#locobranding {
1227+ width: 96px;
1228+ height: 96px;
1229+ position: absolute;
1230+ right: 10px;
1231+}
1232+
1233+/* My Teams style */
1234+h2.dynamic-width {
1235+ display: inline-block;
1236+ margin-bottom: 0;
1237+}
1238+
1239+.resources {
1240+ font-size: 0.75em;
1241+ float: right;
1242+ margin-top: 21px;
1243+}
1244+
1245+.resources a {
1246+ margin-left: 8px;
1247+}
1248+
1249+.photo a {
1250+ display: inline-block;
1251+ padding: 7px;
1252+}
1253+
1254+.photo img {
1255+ width: 75px;
1256+}
1257+
1258+.main-content-split {
1259+ width:450px;
1260+ margin-top: 15px;
1261+}
1262+
1263+.main-content-split.left {
1264+ float: left;
1265+}
1266+
1267+.main-content-split.right {
1268+ float: right;
1269+}
1270+
1271+.main-content-split.left .title {
1272+ font-size: 0.875em;
1273+}
1274+
1275+.main-content-split.left .new {
1276+ float: right;
1277+ font-size: 0.75em;
1278+}
1279+
1280+.event-summary {
1281+ margin-top:15px;
1282+}
1283+
1284+hr.no-top {
1285+ margin: 0 0;
1286+}
1287+
1288+img.bottom {
1289+ vertical-align: bottom;
1290+}
1291+
1292+ul.indent {
1293+ list-style: none;
1294+ background-color: #F7F7F7;
1295+ padding: 2px 2px 2px 15px;
1296+}
1297+
1298+ul.indent li {
1299+ line-height:1.2em;
1300+ margin: 0.5em 0;
1301+}
1302+
1303+.teams-legend {
1304+ width:200px;
1305+ padding:5px 0;
1306+ margin:5px 40% 0;
1307+ float:right;
1308+ text-align:right;
1309+ background-color:#F7F7F7;
1310+ box-shadow:0 1px 1px #DFDFDF;
1311+ border-radius:8px;
1312+}
1313+
1314+/* Team photos feed */
1315+div#flickr, div#picasa, div#pixie {
1316+ width:100%;
1317+}
1318+
1319+div#flickr a.lightbox img {
1320+ border: 5px solid #b3aaa4;
1321+ margin-left: 5px;
1322+ margin-right: 5px;
1323+}
1324+
1325+div#picasa a.lightbox img {
1326+ border: 5px solid #b3aaa4;
1327+ margin-left: 5px;
1328+ margin-right: 5px;
1329+}
1330+
1331+div#pixie a.lightbox img {
1332+ border: 5px solid #b3aaa4;
1333+ margin-left: 5px;
1334+ margin-right: 5px;
1335+
1336+}
1337+
1338+.double-side-content {
1339+ float: left;
1340+ margin: 5px 10px;
1341+ padding: 10px;
1342+ width: 600px;
1343+}
1344+
1345+.double-side-column {
1346+ float: left;
1347+ width: 600px;
1348+}
1349+
1350+.single-side-column {
1351+ float: left;
1352+ width: 300px;
1353+}
1354+
1355+.map {
1356+ min-height: 170px;
1357+ width: 250px;
1358+}
1359+
1360+/* Blog Styling */
1361+.blog-entry-image {
1362+ float: left;
1363+ height: 40px;
1364+ padding: 0 8px 8px 0;
1365+}
1366+
1367+.blog-entry-title {
1368+ margin-bottom: 0px;
1369+}
1370+
1371+.blog-entry-author {
1372+ font-size: 0.75em;
1373+}
1374+
1375+.blog-entry-text p {
1376+ text-align:justify;
1377+ font-size: 13px;
1378+ line-height: 1.4;
1379+}
1380+
1381+.rsvp-link {
1382+ font-size: 0.8em;
1383+ font-weight: bold;
1384+}
1385+
1386+table.side-table {
1387+ width: 280px;
1388+}
1389
1390=== modified file 'loco_directory/settings.py'
1391--- loco_directory/settings.py 2012-02-09 02:06:11 +0000
1392+++ loco_directory/settings.py 2012-06-15 22:38:18 +0000
1393@@ -190,8 +190,8 @@
1394 'bzr_apps': ('bzr+ssh://bazaar.launchpad.net/%2Bbranch/ubuntu-django-foundations/bzr-apps/', '7'),
1395
1396 ## ubuntu-website supplied templates and styles
1397- 'ubuntu_website': ('bzr+ssh://bazaar.launchpad.net/~ubuntu-community-webthemes/ubuntu-community-webthemes/light-django-theme', '36'),
1398-
1399+ 'ubuntu_website': ('bzr+ssh://bazaar.launchpad.net/~ubuntu-community-webthemes/ubuntu-community-webthemes/light-django-theme', '45'),
1400+
1401 ## twidenash supplied microblog embedding javascript
1402 'media/js/twidenash': ('bzr+ssh://bazaar.launchpad.net/~django-foundations-dev/twidenash/2.0/', '4'),
1403 }
1404
1405=== modified file 'loco_directory/templates/404.html'
1406--- loco_directory/templates/404.html 2011-11-12 01:43:27 +0000
1407+++ loco_directory/templates/404.html 2012-06-15 22:38:18 +0000
1408@@ -4,9 +4,8 @@
1409 {% block page_name %}{% trans "This Page Does Not Exist" %}{% endblock %}
1410
1411 {% block content %}
1412-
1413-<article class="main-content">
1414-
1415+<div class="row">
1416+ <section class="span-12">
1417 <h2>{% trans "This Page Does Not Exist!" %}</h2>
1418
1419 <p>
1420@@ -17,6 +16,7 @@
1421 </ul>
1422 </p>
1423 <p>{% trans "If you believe the reason you are here is a bug in the LoCo Team Portal please " %} <a href='https://bugs.launchpad.net/loco-team-portal/+filebug'>{% trans "Report it!" %}</a></p>
1424-</article>
1425+</section>
1426+</div>
1427
1428 {% endblock %}
1429
1430=== modified file 'loco_directory/templates/500.html'
1431--- loco_directory/templates/500.html 2011-11-12 01:43:27 +0000
1432+++ loco_directory/templates/500.html 2012-06-15 22:38:18 +0000
1433@@ -20,14 +20,15 @@
1434
1435 {% block content %}
1436
1437-<article class="main-content">
1438+<div class="row">
1439+ <section class="span-12">
1440 <h2>{% trans "The LoCo Portal has encountered an Error!" %}</h2>
1441 <p>{% trans "Please try your request again." %}
1442 </p>
1443 <p>{% trans "If you continue to experience problems with the LoCo Team Portal, please " %} <a href='https://bugs.launchpad.net/loco-team-portal/+filebug'>{% trans "Report it!" %}</a>
1444 </p>
1445-</article>
1446-
1447+</section>
1448+</div>
1449 {% endblock %}
1450
1451 {% block footer %}{% endblock %}
1452
1453=== modified file 'loco_directory/templates/about.html'
1454--- loco_directory/templates/about.html 2011-11-22 03:14:58 +0000
1455+++ loco_directory/templates/about.html 2012-06-15 22:38:18 +0000
1456@@ -5,8 +5,8 @@
1457
1458 {% block content %}
1459
1460-
1461-<article class="main-content leading">
1462+<div class="row">
1463+<section class="span-12">
1464 <h2>{% trans "What is the LoCo Team Portal?" %}</h2>
1465 {% with '</a>' as link_end %}
1466 {% with '<a href="https://launchpad.net/~nixternal">' as link_developer %}
1467@@ -19,11 +19,12 @@
1468 {% endwith %}
1469 {% endwith %}
1470 {% endwith %}
1471-</article>
1472-
1473+</section>
1474+</div>
1475 <hr class="divide" />
1476
1477-<article class="minor-content">
1478+<div class="row">
1479+<section class="span-6">
1480 <h2>{% trans "The Portal Data" %}</h2>
1481 {% with '</a>' as link_end %}
1482 {% with '<a href="https://launchpad.net/">' as link_launchpad %}
1483@@ -41,9 +42,8 @@
1484 {% endwith %}
1485 {% endwith %}
1486 {% endwith %}
1487-</article>
1488-
1489-<article class="minor-content">
1490+</section>
1491+<section class="span-6 last">
1492 <h2>{% trans "Contribute to the LoCo Team Portal!" %}</h2>
1493 {% with '</a>' as link_end %}
1494 <p>{% trans "You can make it better:" %}
1495@@ -69,11 +69,11 @@
1496 <p>{% blocktrans %}Need to know more, {{ link_ld }}just ask!{{ link_end }}{% endblocktrans %}</p>
1497 {% endwith %}
1498 {% endwith %}
1499-
1500- <hr class="divide" />
1501-</article>
1502-
1503-<article class="minor-content">
1504+</section>
1505+</div>
1506+ <hr class="divide" />
1507+<div class="row">
1508+<section class="span-12">
1509 <h2>{% trans "Coming Soon!" %}</h2>
1510 <p>
1511 {% trans "Future additions to this site will include:" %}
1512@@ -82,5 +82,6 @@
1513 <li>{% trans "Various mashups" %}</li>
1514 </ul>
1515 </p>
1516-</article>
1517+</section>
1518+</div>
1519 {% endblock %}
1520
1521=== modified file 'loco_directory/templates/about_loco.html'
1522--- loco_directory/templates/about_loco.html 2011-10-10 15:05:02 +0000
1523+++ loco_directory/templates/about_loco.html 2012-06-15 22:38:18 +0000
1524@@ -4,17 +4,19 @@
1525 {% block page_name %}{% trans "About Local Community (LoCo) Teams" %}{% endblock %}
1526
1527 {% block sub_nav_links %}
1528-<a class="sub-nav-item" href="{% url loco_setup %}">{% trans "Setting up a new Local Community (LoCo) Team" %}</a>
1529+<li><a class="sub-nav-item" href="{% url loco_setup %}">{% trans "Setting up a new Local Community (LoCo) Team" %}</a></li>
1530 {% endblock %}
1531
1532 {% block content %}
1533
1534-<article class="main-content">
1535+<div class="row">
1536+ <section class="span-12">
1537 <h2>{% trans "About Local Community (LoCo) Teams" %}</h2>
1538 <p>{% trans "With the incredible success of Ubuntu around the world, the LoCo project is here to help groups of Ubuntu fans and enthusiasts work together in regional teams to help advocate, promote, translate, develop and otherwise improve Ubuntu. Our worldwide network of LoCo teams is providing a strong backbone to our already vast and extensive Ubuntu community. Why not go and see the" %} <a title="{% trans "See All LoCo Teams" %}" href="{% url team-list %}">{% trans "full list of teams!" %}</a></p>
1539-</article>
1540+</section></div>
1541
1542-<article class="main-content">
1543+<div class="row">
1544+ <section class="span-12">
1545 <h3>{% trans "Joining a LoCo Team" %}</h3>
1546 <ul>
1547 {% with '</a>' as link_end %}
1548@@ -31,12 +33,13 @@
1549 {% endwith %}
1550 {% endwith %}
1551 </ul>
1552-</article>
1553+</section></div>
1554
1555-<article class="main-content">
1556+<div class="row">
1557+ <section class="span-12">
1558 <h3>{% trans "Why Local Teams?" %}</h3>
1559 <p>{% trans "Ever since the birth of computers, enthusiasts and fans around the world have collected together in garages, universities and pubs to talk about their interest, learn from each other and help promote their interest. Combine this with the huge popularity of Ubuntu, and you have the Ubuntu LoCo project." %}</p>
1560-</article>
1561+</section></div>
1562
1563
1564 {% endblock %}
1565
1566=== modified file 'loco_directory/templates/base.html'
1567--- loco_directory/templates/base.html 2011-11-28 19:41:52 +0000
1568+++ loco_directory/templates/base.html 2012-06-15 22:38:18 +0000
1569@@ -1,13 +1,15 @@
1570-{% extends "ubuntu_website_base.html" %}
1571+{% extends "website_base.html" %}
1572 {% load i18n %}
1573
1574 {% block title %}{% block page_name %}{% trans "Home" %}{%endblock %} | {% trans "Ubuntu LoCo Team Portal" %}{% endblock %}
1575
1576 {% block logo_text %}{% trans "LoCo Team Portal" %}{% endblock %}
1577
1578+{% block extrastyles %}
1579+ <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}/css/styles.css" />
1580+{% endblock %}
1581+
1582 {% block extrahead %}
1583- <link rel="stylesheet" type="text/css" href="{{MEDIA_URL}}css/newstyle.css" />
1584- <script type="text/javascript" src="{{MEDIA_URL}}jquery/jquery.js"></script>
1585 <script type="text/javascript">
1586 var _gaq = _gaq || [];
1587 _gaq.push(['_setAccount', 'UA-26763972-1']);
1588@@ -39,12 +41,14 @@
1589 {% endblock %}
1590
1591 {% block main_nav_links %}
1592- <a class="main-nav-item {% ifequal url_base 'teams' %}current{% endifequal %}" title="{% trans "Show All Teams" %}" href="{% url team-list %}">{% trans "Teams" %}</a>
1593- <a class="main-nav-item {% ifequal url_base 'events' %}current{% endifequal %}" title="{% trans "Show All Events" %}" href="{% url event-list %}">{% trans "Events" %}</a>
1594- <a class="main-nav-item {% ifequal url_base 'meetings' %}current{% endifequal %}" title="{% trans "Show All Meetings" %}" href="{% url meeting-list %}">{% trans "Meetings" %}</a>
1595- <a class="main-nav-item {% ifequal url_base 'loco-council' %}current{% endifequal %}" title="{% trans "LoCo Council" %}" href="{% url loco_council %}">{% trans "LoCo Council" %}</a>
1596- <a class="main-nav-item {% ifequal url_base 'about-loco' %}current{% endifequal %}" title="{% trans "About LoCo Teams" %}" href="{% url about_loco %}">{% trans "About LoCos" %}</a>
1597- <a class="main-nav-item {% ifequal url_base 'irc' %}current{% endifequal %}" title="{% trans "IRC Chat" %}" href="{% url irc_chat %}">{% trans "IRC Chat" %}</a>
1598+<ul class="clearfix">
1599+ <li{% if item.current %} class='active'{% endif %} id="main-nav"><a class="main-nav-item {% ifequal url_base 'teams' %}active{% endifequal %}" title="{% trans "Show All Teams" %}" href="{% url team-list %}">{% trans "Teams" %}</a></li>
1600+ <li{% if item.current %} class='active'{% endif %} id="main-nav"><a class="main-nav-item {% ifequal url_base 'events' %}active{% endifequal %}" title="{% trans "Show All Events" %}" href="{% url event-list %}">{% trans "Events" %}</a></li>
1601+ <li{% if item.current %} class='active'{% endif %} id="main-nav"><a class="main-nav-item {% ifequal url_base 'meetings' %}active{% endifequal %}" title="{% trans "Show All Meetings" %}" href="{% url meeting-list %}">{% trans "Meetings" %}</a></li>
1602+ <li{% if item.current %} class='active'{% endif %} id="main-nav"><a class="main-nav-item {% ifequal url_base 'loco-council' %}active{% endifequal %}" title="{% trans "LoCo Council" %}" href="{% url loco_council %}">{% trans "LoCo Council" %}</a></li>
1603+ <li{% if item.current %} class='active'{% endif %} id="main-nav"><a class="main-nav-item {% ifequal url_base 'about-loco' %}active{% endifequal %}" title="{% trans "About LoCo Teams" %}" href="{% url about_loco %}">{% trans "About LoCos" %}</a></li>
1604+ <li{% if item.current %} class='active'{% endif %} id="main-nav"><a class="main-nav-item {% ifequal url_base 'irc' %}active{% endifequal %}" title="{% trans "IRC Chat" %}" href="{% url irc_chat %}">{% trans "IRC Chat" %}</a></li>
1605+</ul>
1606 {% endblock %}
1607
1608 {% block sub_nav_links %}
1609@@ -52,17 +56,17 @@
1610
1611 {% block search_box %}
1612 <form id="site_search_form" action="{% url common.views.site_search %}" method="get">
1613- {{ search_form.q }}
1614- <input type="image" src="/media/img/search.png" title="{% trans "Search" %}" alt="{% trans "Search" %}" />
1615+ {{ search_form.q }}
1616+ <input type="image" src="/media/img/search.png" title="{% trans "Search" %}" alt="{% trans "Search" %}" />
1617 </form>
1618 {% endblock %}
1619
1620 {% block messages %}
1621- {% if messages %}
1622- {% for message in messages %}
1623- <div class = 'message' ><div class = 'content-shim' >{{ message }}</div></div>
1624- {% endfor %}
1625- {% endif %}
1626+ {% if messages %}
1627+ {% for message in messages %}
1628+ <div class = 'message' ><div class = 'content-shim' >{{ message }}</div></div>
1629+ {% endfor %}
1630+ {% endif %}
1631 {% endblock %}
1632
1633 {% block content %}
1634@@ -73,22 +77,22 @@
1635
1636 {% block footer %}
1637 <div style="height: 40px;">
1638- <div class="lang_switcher">
1639- <form name="lang-switcher" style="text-align:right;" action="/language/" method="get">
1640- <input name="next" type="hidden" value="{{ request.path }}" />
1641- <select name="lang" onchange="document.forms['lang-switcher'].submit()">
1642- {% for lang in LANGUAGES %}
1643- <option value="{{ lang.0 }}"{% ifequal LANGUAGE_CODE lang.0 %} selected="selected"{% endifequal %}>{{ lang.1 }}</option>
1644- {% endfor %}
1645- </select>
1646- </form>
1647- </div>
1648+ <div class="lang_switcher">
1649+ <form name="lang-switcher" style="text-align:right;" action="/language/" method="get">
1650+ <input name="next" type="hidden" value="{{ request.path }}" />
1651+ <select name="lang" onchange="document.forms['lang-switcher'].submit()">
1652+ {% for lang in LANGUAGES %}
1653+ <option value="{{ lang.0 }}"{% ifequal LANGUAGE_CODE lang.0 %} selected="selected"{% endifequal %}>{{ lang.1 }}</option>
1654+ {% endfor %}
1655+ </select>
1656+ </form>
1657+ </div>
1658 </div>
1659 <div class="copyright">
1660- &copy; 2008-{% now "Y" %} Canonical Ltd., Ubuntu Community. Ubuntu is a registered trademark of Canonical Ltd.<br />
1661- <a href="/about">{% trans "About the LoCo Team Portal Project" %}</a><br />
1662- {% trans 'Problems with LoCo Team Portal?' %} <a href="https://bugs.launchpad.net/loco-team-portal/+filebug">{% trans 'File a Bug' %}</a><br />
1663- {% trans "LoCo Team Portal" %} {{ loco_version }}
1664+ <p>&copy; 2008-{% now "Y" %} Canonical Ltd., Ubuntu Community. Ubuntu is a registered trademark of Canonical Ltd.</p>
1665+ <p><a href="/about">{% trans "About the LoCo Team Portal Project" %}</a></p>
1666+ <p>{% trans 'Problems with LoCo Team Portal?' %} <a href="https://bugs.launchpad.net/loco-team-portal/+filebug">{% trans 'File a Bug' %}</a></p>
1667+ <p>{% trans "LoCo Team Portal" %} {{ loco_version }}</p>
1668 </div>
1669 {% endblock %}
1670
1671
1672=== modified file 'loco_directory/templates/events/event_history_list.html'
1673--- loco_directory/templates/events/event_history_list.html 2012-06-10 19:08:39 +0000
1674+++ loco_directory/templates/events/event_history_list.html 2012-06-15 22:38:18 +0000
1675@@ -9,11 +9,12 @@
1676 {% block page_name %}{% trans "Ubuntu LoCo Events History" %}{% endblock %}
1677
1678 {% block sub_nav_links %}
1679-<a class="sub-nav-item" href="{% url event-list %}">{% trans "Back to Events List" %}</a>
1680+<li><a class="sub-nav-item" href="{% url event-list %}">{% trans "Back to Events List" %}</a></li>
1681 {% endblock %}
1682
1683 {% block content %}
1684-<article class="main-content">
1685+<div class="row">
1686+<section class="span-12">
1687 <h2>{% trans "Ubuntu LoCo Global Events History" %}</h2>
1688
1689 {% if global_event_list %}
1690@@ -24,11 +25,11 @@
1691 {% else %}
1692 <p>{% trans "There have been no LoCo Global Events in the past :(" %}</p>
1693 {% endif %}
1694-</article>
1695-
1696-<hr class="divide" />
1697-
1698-<article class="main-content">
1699+</section>
1700+</div>
1701+
1702+<div class="row">
1703+<section class="span-12">
1704 <h2>{% trans "Ubuntu LoCo Team Events History" %}</h2>
1705
1706 <form action="." method="post">{% csrf_token %}
1707@@ -56,5 +57,6 @@
1708 <p>{% trans "There have been no LoCo Team Events in the past :(" %}</p>
1709 {% endif %}
1710
1711-</article>
1712+</section>
1713+</div>
1714 {% endblock %}
1715
1716=== modified file 'loco_directory/templates/events/event_list.html'
1717--- loco_directory/templates/events/event_list.html 2011-10-05 00:50:53 +0000
1718+++ loco_directory/templates/events/event_list.html 2012-06-15 22:38:18 +0000
1719@@ -19,16 +19,17 @@
1720 {% endblock %}
1721
1722 {% block sub_nav_links %}
1723-<a class="sub-nav-item" title="{% trans "Show All Venues" %}" href="{% url venue-list %}">{% trans "Venues" %}</a>
1724+<li><a class="sub-nav-item" title="{% trans "Show All Venues" %}" href="{% url venue-list %}">{% trans "Venues" %}</a>
1725 {% if user_is_on_lc %}
1726-<a class="sub-nav-item" href="{% url global-event-new %}">{% trans "Add Global Event" %}</a>
1727+<li><a class="sub-nav-item" href="{% url global-event-new %}">{% trans "Add Global Event" %}</a></li>
1728 {% endif %}
1729-<a class="sub-nav-item" href="{% url team-event-select %}">{% trans "Add Team Event" %}</a>
1730-<a class="sub-nav-item" href="{% url event-history-list %}">{% trans "Past Events" %}</a>
1731+<li><a class="sub-nav-item" href="{% url team-event-select %}">{% trans "Add Team Event" %}</a></li>
1732+<li><a class="sub-nav-item" href="{% url event-history-list %}">{% trans "Past Events" %}</a></li>
1733 {% endblock %}
1734
1735 {% block content %}
1736-<article class="minor-content">
1737+<div class="row">
1738+<section class="span-6">
1739 <h2>{% trans "Ubuntu LoCo Global Events" %}
1740 {% if global_event_list %}
1741 <a class="global_event_ical" href="{% url global-event-list-ical %}">
1742@@ -41,13 +42,14 @@
1743 {% else %}
1744 </h2><p>{% trans "There are currently no LoCo Global Events" %}</p>
1745 {% endif %}
1746-</article>
1747-
1748-<section id="venue-map" class="minor-content alone venue-map"></section>
1749-
1750-<hr class="divide" />
1751-
1752-<article class="main-content">
1753+</section>
1754+
1755+<section id="venue-map" class="span-6 last alone venue-map"></section>
1756+</div>
1757+
1758+
1759+<div class="row">
1760+<section class="span-12">
1761 <h2>{% trans "Ubuntu LoCo Team Events" %}
1762 {% if team_event_list %}
1763 <a class="teams_event_ical" href="{% url teams-event-list-ical %}">
1764@@ -59,6 +61,6 @@
1765 {% else %}
1766 </h2><p>{% trans "There are currently no LoCo Team Events" %}</p>
1767 {% endif %}
1768-
1769-</article>
1770+</section>
1771+</div>
1772 {% endblock %}
1773
1774=== modified file 'loco_directory/templates/events/global_event_delete_confirm.html'
1775--- loco_directory/templates/events/global_event_delete_confirm.html 2011-10-05 00:50:53 +0000
1776+++ loco_directory/templates/events/global_event_delete_confirm.html 2012-06-15 22:38:18 +0000
1777@@ -8,14 +8,16 @@
1778 {% endblock %}
1779
1780 {% block content %}
1781-<article class="main-content">
1782+<div class="row">
1783+<section class="span-9">
1784 <form action="." method="post">
1785 <fieldset>
1786- <legend>{% trans "Delete global Event" %}</legend>
1787+ <h3>{% trans "Delete global Event" %}</h3>
1788 <label>{% blocktrans with global_event_object.name as eventname %}Do you really want to delete the Global Event: {{eventname}}?{% endblocktrans %}</label>
1789 </fieldset>
1790 <input type="submit" value="Submit" />
1791 <a href="{{global_event_object.get_absolute_url}}">{% trans "Cancel" %}</a>
1792 </form>
1793-</article>
1794+</section>
1795+</div>
1796 {% endblock %}
1797
1798=== modified file 'loco_directory/templates/events/global_event_detail.html'
1799--- loco_directory/templates/events/global_event_detail.html 2011-10-05 00:50:53 +0000
1800+++ loco_directory/templates/events/global_event_detail.html 2012-06-15 22:38:18 +0000
1801@@ -21,11 +21,11 @@
1802 {% block title %}{% trans global_event_object.name %} | {% trans "Ubuntu LoCo Team Portal" %} {% endblock %}
1803
1804 {% block sub_nav_links %}
1805-<a class="sub-nav-item" href="{% url event-list %}">{% trans "Back to Events List" %}</a>
1806-<a class="sub-nav-item" href="{% url team-event-select %}?global_event_id={{global_event_object.id}}">{% trans "Add Team Event" %}</a>
1807+<li><a class="sub-nav-item" href="{% url event-list %}">{% trans "Back to Events List" %}</a></li>
1808+<li><a class="sub-nav-item" href="{% url team-event-select %}?global_event_id={{global_event_object.id}}">{% trans "Add Team Event" %}</a></li>
1809 {% if user_is_on_lc %}
1810-<a class="sub-nav-item" href="{% url global-event-update global_event_object.id %}">{% trans "Edit Details" %}</a>
1811-<a class="sub-nav-item" href="{% url global-event-delete global_event_object.id %}">{% trans "Delete Event" %}</a>
1812+<li><a class="sub-nav-item" href="{% url global-event-update global_event_object.id %}">{% trans "Edit Details" %}</a></li>
1813+<li><a class="sub-nav-item" href="{% url global-event-delete global_event_object.id %}">{% trans "Delete Event" %}</a></li>
1814 {% endif %}
1815 {% endblock %}
1816
1817
1818=== modified file 'loco_directory/templates/events/global_event_detail.inc.html'
1819--- loco_directory/templates/events/global_event_detail.inc.html 2012-02-07 20:10:49 +0000
1820+++ loco_directory/templates/events/global_event_detail.inc.html 2012-06-15 22:38:18 +0000
1821@@ -69,7 +69,8 @@
1822 {% endif %}
1823 {% endblock %}
1824
1825-<article class="double-side-content">
1826+<div class="row">
1827+<section class="span-6">
1828 <h2>{{global_event_object.name}}</h2>
1829 {% if global_event_object.description %}
1830 <table id="global-event-basic">
1831@@ -86,9 +87,9 @@
1832 <div id="photo-feed"></div>
1833 {% endif %}
1834
1835-</article>
1836+</section>
1837
1838-<div class="single-side-column">
1839+<section class="span-6 last">
1840 <section id="venue-map" class="side-content alone venue-map"></section>
1841
1842 <div class="share">
1843@@ -114,21 +115,24 @@
1844 {% endif %}
1845
1846 {% if global_event_object.microbloghashtag %}
1847- <article class="side-content alone">
1848+ <article class="alone">
1849 <h2>{% trans "Microblogging" %} #{{global_event_object.microbloghashtag}}</h2>
1850 <div class="twidenash" id="{{ global_event_object.microbloghashtag }}"></div>
1851 </article>
1852 {% endif %}
1853
1854+
1855+</section>
1856 </div>
1857
1858-
1859 {% if global_event_object.channel %}
1860-<div id="webchat">
1861+<div class="row " id="webchat">
1862+<section class="span-12">
1863 {% if user.is_authenticated %}
1864 <iframe src="http://webchat.freenode.net/?channels={{ global_event_object.channel }}&prompt=1&uio=OT10cnVlJjEwPXRydWUmMTE9MjM218&nick={{ user.username|irc }}" width="900" height="400"></iframe>
1865 {% else %}
1866 <iframe src="http://webchat.freenode.net/?channels={{ global_event_object.channel }}&prompt=1&uio=OT10cnVlJjEwPXRydWUmMTE9MjM218&nick=locodir-user" width="900" height="400"></iframe>
1867 {% endif %}
1868+ </section>
1869 </div>
1870 {% endif %}
1871
1872=== modified file 'loco_directory/templates/events/global_event_new.html'
1873--- loco_directory/templates/events/global_event_new.html 2011-10-05 00:50:53 +0000
1874+++ loco_directory/templates/events/global_event_new.html 2012-06-15 22:38:18 +0000
1875@@ -18,15 +18,17 @@
1876 {% endblock %}
1877
1878 {% block content %}
1879-<article class="main-content">
1880+<div class="row">
1881+<section class="span-9">
1882 <form action="." method="post">
1883 <fieldset>
1884- <legend>{% trans "Add new Global Event" %}</legend>
1885+ <h3>{% trans "Add new Global Event" %}</h3>
1886 {{ form.as_template }}
1887 </fieldset>
1888 {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}
1889 <input type="submit" name="submit" value="{% trans "Submit" %}" class="submit-button" />
1890 </form>
1891-</article>
1892+</section>
1893+</div>
1894
1895 {% endblock %}
1896
1897=== modified file 'loco_directory/templates/events/global_event_update.html'
1898--- loco_directory/templates/events/global_event_update.html 2011-10-05 00:50:53 +0000
1899+++ loco_directory/templates/events/global_event_update.html 2012-06-15 22:38:18 +0000
1900@@ -16,15 +16,17 @@
1901 {% endblock %}
1902
1903 {% block content %}
1904-<article class="main-content">
1905+<div class="row">
1906+<section class="span-9">
1907 <form action="." method="post">
1908 <fieldset>
1909- <legend>{% trans "Update Global Event" %}</legend>
1910+ <h3>{% trans "Update Global Event" %}</h3>
1911 {{ form.as_template }}
1912 </fieldset>
1913 {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}
1914 <input type="submit" name="submit" value="{% trans "Submit" %}" class="submit-button" />
1915 </form>
1916-</article>
1917+</section>
1918+</div>
1919
1920 {% endblock %}
1921
1922=== modified file 'loco_directory/templates/events/global_jam_dashboard.html'
1923--- loco_directory/templates/events/global_jam_dashboard.html 2012-02-09 16:42:49 +0000
1924+++ loco_directory/templates/events/global_jam_dashboard.html 2012-06-15 22:38:18 +0000
1925@@ -84,104 +84,102 @@
1926 {% block title %}{% trans global_event_object.name %} | {% trans "Ubuntu LoCo Team Portal" %} {% endblock %}
1927
1928 {% block sub_nav_links %}
1929-<a class="sub-nav-item" href="{% url global-event-detail global_event_object.id %}">{% trans "Show Event Details" %}</a>
1930-<a class="sub-nav-item" href="{% url team-event-select %}?global_event_id={{global_event_object.id}}">{% trans "Add Team Event" %}</a>
1931-{% if user_is_on_lc %}
1932-<a class="sub-nav-item" href="{% url global-event-update global_event_object.id %}">{% trans "Edit Details" %}</a>
1933-<a class="sub-nav-item" href="{% url global-event-delete global_event_object.id %}">{% trans "Delete Event" %}</a>
1934-{% endif %}
1935+ <li><a class="sub-nav-item" href="{% url global-event-detail global_event_object.id %}">{% trans "Show Event Details" %}</a></li>
1936+ <li><a class="sub-nav-item" href="{% url team-event-select %}?global_event_id={{global_event_object.id}}">{% trans "Add Team Event" %}</a></li>
1937+ {% if user_is_on_lc %}
1938+ <li><a class="sub-nav-item" href="{% url global-event-update global_event_object.id %}">{% trans "Edit Details" %}</a></li>
1939+ <li><a class="sub-nav-item" href="{% url global-event-delete global_event_object.id %}">{% trans "Delete Event" %}</a></li>
1940+ {% endif %}
1941 {% endblock %}
1942
1943 {% block content %}
1944
1945-<article class="double-side-content">
1946- {% if global_event_object.activities %}
1947- {{ global_event_object.activities|markdown }}
1948- {% endif %}
1949-
1950-{% if global_event_object.channel %}
1951-<div>
1952- {% if user.is_authenticated %}
1953- <iframe src="http://webchat.freenode.net/?channels={{ global_event_object.channel }}&prompt=1&uio=OT10cnVlJjEwPXRydWUmMTE9MzEc5&nick={{ user.username|irc }}" width="600" height="400"></iframe>
1954- {% else %}
1955- <iframe src="http://webchat.freenode.net/?channels={{ global_event_object.channel }}&prompt=1&uio=OT10cnVlJjEwPXRydWUmMTE9MzEc5&nick=locodir-user" width="600" height="400"></iframe>
1956- {% endif %}
1957-</div>
1958-{% endif %}
1959-
1960-{% if global_event_object.pictag %}
1961- <article class="alone">
1962- <h2>{% trans "Photos" %} #{{global_event_object.pictag}}
1963- <a href="http://www.flickr.com/search/?w=all&q={{ global_event_object.pictag }}&m=tags">
1964- <img src="{{MEDIA_URL}}img/flickr.ico" alt="{{ global_event_object.pictag }} on Flickr" />
1965- </a>
1966- <a href="http://picasaweb.google.com/lh/view?tags=%22{{ global_event_object.pictag }}%22&psc=G#">
1967- <img src="{{MEDIA_URL}}img/picasa.ico" alt="{{ global_event_object.pictag }} on Picasa" />
1968- </a>
1969- <a href="http://pix.ie/explore/tag/{{ global_event_object.pictag }}">
1970- <img src="{{MEDIA_URL}}img/pixie.ico" alt="{{ global_event_object.pictag }} on Pix.ie" />
1971- </a>
1972- </h2>
1973- <div id="photo-feed"></div>
1974- </article>
1975-{% endif %}
1976-
1977-</article>
1978-
1979-<div class="single-side-column">
1980- <article>
1981- <h2>{{ global_event_object.name }}</h2>
1982-
1983- {% if global_event_object.date_begin %}
1984- <p>
1985- {% ifequal global_event_object.date_begin|date global_event_object.date_end|date %}
1986- {{ global_event_object.date_begin|date:"D, d N Y H:i" }} - {{ global_event_object.date_end|date:"H:i T"}}
1987- {% else %}
1988- {{ global_event_object.date_begin|date:"D, d N Y H:i" }} - {{ global_event_object.date_end|date:"D, d N Y H:i T"}}
1989- {% endifequal %}
1990- </p>
1991- {% endif %}
1992-
1993- {% if global_event_object.announce %}
1994- <p>
1995- <a href="{{ global_event_object.announce }}">{{global_event_object.announce }}</a>
1996- </p>
1997- {% endif %}
1998- </article>
1999+<div class="row">
2000+ <section class="span-6">
2001+ {% if global_event_object.activities %}
2002+ {{ global_event_object.activities|markdown }}
2003+ {% endif %}
2004+
2005+ {% if global_event_object.channel %}
2006+ <div>
2007+ {% if user.is_authenticated %}
2008+ <iframe src="http://webchat.freenode.net/?channels={{ global_event_object.channel }}&prompt=1&uio=OT10cnVlJjEwPXRydWUmMTE9MzEc5&nick={{ user.username|irc }}" width="600" height="400"></iframe>
2009+ {% else %}
2010+ <iframe src="http://webchat.freenode.net/?channels={{ global_event_object.channel }}&prompt=1&uio=OT10cnVlJjEwPXRydWUmMTE9MzEc5&nick=locodir-user" width="600" height="400"></iframe>
2011+ {% endif %}
2012+ </div>
2013+ {% endif %}
2014+
2015+ {% if global_event_object.pictag %}
2016+ <article class="alone">
2017+ <h2>{% trans "Photos" %} #{{global_event_object.pictag}}
2018+ <a href="http://www.flickr.com/search/?w=all&q={{ global_event_object.pictag }}&m=tags">
2019+ <img src="{{MEDIA_URL}}img/flickr.ico" alt="{{ global_event_object.pictag }} on Flickr" />
2020+ </a>
2021+ <a href="http://picasaweb.google.com/lh/view?tags=%22{{ global_event_object.pictag }}%22&psc=G#">
2022+ <img src="{{MEDIA_URL}}img/picasa.ico" alt="{{ global_event_object.pictag }} on Picasa" />
2023+ </a>
2024+ <a href="http://pix.ie/explore/tag/{{ global_event_object.pictag }}">
2025+ <img src="{{MEDIA_URL}}img/pixie.ico" alt="{{ global_event_object.pictag }} on Pix.ie" />
2026+ </a>
2027+ </h2>
2028+ <div id="photo-feed"></div>
2029+ </article>
2030+ {% endif %}
2031+ </section>
2032+
2033+ <section class="span-6 last">
2034+ <article>
2035+ <h2>{{ global_event_object.name }}</h2>
2036+ {% if global_event_object.date_begin %}
2037+ <p>
2038+ {% ifequal global_event_object.date_begin|date global_event_object.date_end|date %}
2039+ {{ global_event_object.date_begin|date:"D, d N Y H:i" }} - {{ global_event_object.date_end|date:"H:i T"}}
2040+ {% else %}
2041+ {{ global_event_object.date_begin|date:"D, d N Y H:i" }} - {{ global_event_object.date_end|date:"D, d N Y H:i T"}}
2042+ {% endifequal %}
2043+ </p>
2044+ {% endif %}
2045+ {% if global_event_object.announce %}
2046+ <p>
2047+ <a href="{{ global_event_object.announce }}">{{global_event_object.announce }}</a>
2048+ </p>
2049+ {% endif %}
2050+ </article>
2051
2052- <article class="side-content share">
2053- <a href="http://www.reddit.com/submit" onclick="window.location = 'http://www.reddit.com/submit?url=' + encodeURIComponent(window.location); return false"> <img style="padding-bottom: 4px;"src="http://www.reddit.com/static/spreddit7.gif" alt="submit to reddit" border="0" /></a><br />
2054- <div id="fb-root"></div>
2055- <script>(function(d, s, id) {
2056- var js, fjs = d.getElementsByTagName(s)[0];
2057- if (d.getElementById(id)) {return;}
2058- js = d.createElement(s); js.id = id;
2059- js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=127188230723188";
2060- fjs.parentNode.insertBefore(js, fjs);
2061- }(document, 'script', 'facebook-jssdk'));</script>
2062- <div class="fb-like" data-href="http://loco.ubuntu.com{% url global-event-detail global_event_object.id %}" data-send="false" data-layout="box_count" data-width="40" data-show-faces="false" data-font="arial"></div>
2063- <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
2064- <g:plusone size="tall"></g:plusone>
2065- <a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-lang="en">Tweet</a>
2066- <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
2067- <script src="http://www.stumbleupon.com/hostedbadge.php?s=5"></script>
2068- </article>
2069-
2070-{% if global_event_object.microbloghashtag %}
2071- <article class="side-content alone">
2072- <h2>#{{global_event_object.microbloghashtag}}
2073- <a href="http://identi.ca/tag/{{ global_event_object.microbloghashtag }}">
2074- <img src="{{MEDIA_URL}}img/identica.ico" alt="{{ global_event_object.microbloghashtag }} on Identi.ca" />
2075- </a>
2076- <a href="http://twitter.com/#search?q=%23{{ global_event_object.microbloghashtag }}">
2077- <img src="{{MEDIA_URL}}img/twitter.ico" alt="{{ global_event_object.microbloghashtag }} on Twitter" />
2078- </a>
2079- </h2>
2080- <div class="twidenash" id="{{global_event_object.microbloghashtag}}"></div>
2081- </article>
2082-{% endif %}
2083-
2084+ <article class="share">
2085+ <a href="http://www.reddit.com/submit" onclick="window.location = 'http://www.reddit.com/submit?url=' + encodeURIComponent(window.location); return false"> <img style="padding-bottom: 4px;"src="http://www.reddit.com/static/spreddit7.gif" alt="submit to reddit" border="0" /></a><br />
2086+ <div id="fb-root"></div>
2087+ <script>(function(d, s, id) {
2088+ var js, fjs = d.getElementsByTagName(s)[0];
2089+ if (d.getElementById(id)) {return;}
2090+ js = d.createElement(s); js.id = id;
2091+ js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=127188230723188";
2092+ fjs.parentNode.insertBefore(js, fjs);
2093+ }(document, 'script', 'facebook-jssdk'));</script>
2094+ <div class="fb-like" data-href="http://loco.ubuntu.com{% url global-event-detail global_event_object.id %}" data-send="false" data-layout="box_count" data-width="40" data-show-faces="false" data-font="arial"></div>
2095+ <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
2096+ <g:plusone size="tall"></g:plusone>
2097+ <a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-lang="en">Tweet</a>
2098+ <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
2099+ <script src="http://www.stumbleupon.com/hostedbadge.php?s=5"></script>
2100+ </article>
2101+
2102+ {% if global_event_object.microbloghashtag %}
2103+ <article class=" alone">
2104+ <h2>#{{global_event_object.microbloghashtag}}
2105+ <a href="http://identi.ca/tag/{{ global_event_object.microbloghashtag }}">
2106+ <img src="{{MEDIA_URL}}img/identica.ico" alt="{{ global_event_object.microbloghashtag }} on Identi.ca" />
2107+ </a>
2108+ <a href="http://twitter.com/#search?q=%23{{ global_event_object.microbloghashtag }}">
2109+ <img src="{{MEDIA_URL}}img/twitter.ico" alt="{{ global_event_object.microbloghashtag }} on Twitter" />
2110+ </a>
2111+ </h2>
2112+ <div class="twidenash" id="{{global_event_object.microbloghashtag}}"></div>
2113+ </article>
2114+ {% endif %}
2115+
2116+ </section>
2117 </div>
2118
2119-
2120 {% endblock %}
2121
2122=== modified file 'loco_directory/templates/events/team_event_comment_new.html'
2123--- loco_directory/templates/events/team_event_comment_new.html 2011-10-05 00:50:53 +0000
2124+++ loco_directory/templates/events/team_event_comment_new.html 2012-06-15 22:38:18 +0000
2125@@ -16,18 +16,18 @@
2126 {% endblock %}
2127
2128 {% block content %}
2129-<article class="main-content">
2130+<div class="row">
2131+<section class="span-9">
2132 <form action="." method="post">
2133 <fieldset>
2134- <legend>{% trans "Team Event Comment" %}</legend>
2135+ <h3>{% trans "Team Event Comment" %}</h3>
2136 {{ form.as_template }}
2137 </fieldset>
2138 {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}
2139 <input type="submit" name="submit" value="{% trans "Submit" %}" class="submit-button" />
2140 </form>
2141-</article>
2142+</section></div>
2143
2144 {% include "events/team_event_detail.inc.html" %}
2145
2146-
2147 {% endblock %}
2148
2149=== modified file 'loco_directory/templates/events/team_event_delete_confirm.html'
2150--- loco_directory/templates/events/team_event_delete_confirm.html 2011-10-05 00:50:53 +0000
2151+++ loco_directory/templates/events/team_event_delete_confirm.html 2012-06-15 22:38:18 +0000
2152@@ -8,14 +8,16 @@
2153 {% endblock %}
2154
2155 {% block content %}
2156-<article class="main-content">
2157+<div class="row">
2158+<section class="span-9">
2159 <form action="." method="post">
2160 <fieldset>
2161- <legend>{% trans "Delete Team Event" %}</legend>
2162+ <h3>{% trans "Delete Team Event" %}</h3>
2163 <label>{% blocktrans with team_event_object.name as eventname %}Do you really want to delete the Team Event: {{eventname}}?{% endblocktrans %}</label>
2164 </fieldset>
2165 <input type="submit" value="{% trans 'Delete' %}" />
2166 <a href="{{team_event_object.get_absolute_url}}">{% trans "Cancel" %}</a>
2167 </form>
2168-</article>
2169+</section>
2170+</div>
2171 {% endblock %}
2172
2173=== modified file 'loco_directory/templates/events/team_event_detail.html'
2174--- loco_directory/templates/events/team_event_detail.html 2011-11-14 21:59:40 +0000
2175+++ loco_directory/templates/events/team_event_detail.html 2012-06-15 22:38:18 +0000
2176@@ -22,17 +22,17 @@
2177 {% endblock %}
2178
2179 {% block sub_nav_links %}
2180-{% for team in team_event_object.teams.all %}<a class="sub-nav-item" href="{{ team.get_absolute_url }}">{{ team.name }}</a>{% endfor %}
2181+{% for team in team_event_object.teams.all %}<li><a class="sub-nav-item" href="{{ team.get_absolute_url }}">{{ team.name }}</a></li>{% endfor %}
2182
2183-<a class="sub-nav-item" href="{% url team-event-comment-new team_event_object.first_team.lp_name team_event_object.id %}#comment">{% trans "Add Comment" %}</a>
2184+<li><a class="sub-nav-item" href="{% url team-event-comment-new team_event_object.first_team.lp_name team_event_object.id %}#comment">{% trans "Add Comment" %}</a></li>
2185 {% if user.is_authenticated %}
2186 {% if user_is_team_member %}
2187- <a class="sub-nav-item" href="{% url team-event-update team_event_object.first_team.lp_name team_event_object.id %}">{% trans "Edit Details" %}</a>
2188- <a class="sub-nav-item" href="{% url team-event-delete team_event_object.first_team.lp_name team_event_object.id %}">{% trans "Delete Event" %}</a>
2189- <a class="sub-nav-item" href="{% url team-event-copy team_event_object.first_team.lp_name team_event_object.id %}">{% trans "Copy Event" %}</a>
2190+ <li><a class="sub-nav-item" href="{% url team-event-update team_event_object.first_team.lp_name team_event_object.id %}">{% trans "Edit Details" %}</a></li>
2191+ <li><a class="sub-nav-item" href="{% url team-event-delete team_event_object.first_team.lp_name team_event_object.id %}">{% trans "Delete Event" %}</a></li>
2192+ <li><a class="sub-nav-item" href="{% url team-event-copy team_event_object.first_team.lp_name team_event_object.id %}">{% trans "Copy Event" %}</a></li>
2193 {% endif %}
2194 {% endif %}
2195-<a class="sub-nav-item" href="{% url event-ical team_event_object.first_team.lp_name team_event_object.id %}">{% trans "iCal Feed" %}</a>
2196+<li><a class="sub-nav-item" href="{% url event-ical team_event_object.first_team.lp_name team_event_object.id %}">{% trans "iCal Feed" %}</a></li>
2197 {% endblock %}
2198
2199 {% block content %}
2200
2201=== modified file 'loco_directory/templates/events/team_event_detail.inc.html'
2202--- loco_directory/templates/events/team_event_detail.inc.html 2012-02-07 14:36:29 +0000
2203+++ loco_directory/templates/events/team_event_detail.inc.html 2012-06-15 22:38:18 +0000
2204@@ -1,5 +1,6 @@
2205 {% load i18n markup %}
2206-<article class="double-side-content">
2207+<div class="row">
2208+<section class="span-6">
2209 <h2>{{team_event_object.name}}</h2>
2210 {% if team_event_object.description %}
2211 <table id="team-event-basic">
2212@@ -10,9 +11,8 @@
2213 {% endif %}
2214 <h3>{% trans "Details" %}</h3>
2215 {% include "events/team_event_detail_basic.inc.html" %}
2216-</article>
2217-
2218-<article class="side-content attendee">
2219+</section>
2220+<section class="span-6 last">
2221 <h3>
2222 {% if team_event_object.registration %}
2223 <a class="rsvp-link" href="{{team_event_object.registration}}" target="external_registration">{% trans 'Register' %}</a>
2224@@ -25,11 +25,14 @@
2225 {% endif %}
2226 </h3>
2227 {% include "events/team_event_detail_attendees.inc.html" %}
2228-</article>
2229+</section>
2230+</div>
2231
2232 {% if team_event_object.teameventcomment_set.all %}
2233-<article class="main-content">
2234+<div class="row">
2235+<section class="span-12">
2236 <h3>{% blocktrans with team_event_object.teameventcomment_set.all.count as comment_count %}Event Comments ({{ comment_count }}){% endblocktrans %}</h3>
2237 {% include "events/team_event_detail_comments.inc.html" %}
2238-</article>
2239+</section>
2240+</div>
2241 {% endif %}
2242
2243=== modified file 'loco_directory/templates/events/team_event_list.inc.html'
2244--- loco_directory/templates/events/team_event_list.inc.html 2011-11-13 11:43:59 +0000
2245+++ loco_directory/templates/events/team_event_list.inc.html 2012-06-15 22:38:18 +0000
2246@@ -1,5 +1,5 @@
2247 {% load i18n %}
2248-<table id="team_event_list" class="basic wide">
2249+<table id="team_event_list" class="basic">
2250 <thead>
2251 <tr id="team_event_list_header">
2252 <th class="event_name">{% trans "Event Name" %}</th>
2253
2254=== modified file 'loco_directory/templates/events/team_event_new.html'
2255--- loco_directory/templates/events/team_event_new.html 2011-10-05 00:50:53 +0000
2256+++ loco_directory/templates/events/team_event_new.html 2012-06-15 22:38:18 +0000
2257@@ -24,15 +24,17 @@
2258 {% endblock %}
2259
2260 {% block content %}
2261-<article class="main-content">
2262+<div class="row">
2263+<section class="span-9">
2264 <form action="." method="post">
2265 <fieldset>
2266- <legend>{% trans "Add new Team Event for " %}{{ team_object.name}}<span class="supporting">{% trans 'is required' %}</span></legend>
2267+ <h3>{% trans "Add new Team Event for " %}{{ team_object.name}}<span class="supporting">{% trans 'is required' %}</span></h3>
2268 {{ form.as_template }}
2269 </fieldset>
2270 {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}
2271 <input type="submit" name="submit" value="{% trans "Submit" %}" class="submit-button" />
2272 </form>
2273-</article>
2274+</section>
2275+</div>
2276
2277 {% endblock %}
2278
2279=== modified file 'loco_directory/templates/events/team_event_new_select.html'
2280--- loco_directory/templates/events/team_event_new_select.html 2011-10-05 00:50:53 +0000
2281+++ loco_directory/templates/events/team_event_new_select.html 2012-06-15 22:38:18 +0000
2282@@ -4,7 +4,8 @@
2283 {% block page_name %}{% trans "New Team Event" %}{% endblock %}
2284
2285 {% block content %}
2286-<article class="main-content alone">
2287+<div class="row">
2288+<section class="span-9">
2289 <h2>{% trans "Select a Team to add an Event for" %}:</h2>
2290 <p>
2291 <ul>
2292@@ -13,6 +14,7 @@
2293 {% endfor %}
2294 </ul>
2295 </p>
2296-</article>
2297+</section>
2298+</div>
2299
2300 {% endblock %}
2301
2302=== modified file 'loco_directory/templates/events/team_event_register.html'
2303--- loco_directory/templates/events/team_event_register.html 2011-10-05 00:50:53 +0000
2304+++ loco_directory/templates/events/team_event_register.html 2012-06-15 22:38:18 +0000
2305@@ -8,10 +8,11 @@
2306 {% endblock %}
2307
2308 {% block content %}
2309-<article class="main-content">
2310+<div class="row">
2311+<section class="span-9">
2312 <form action="." method="post">
2313 <fieldset>
2314- <legend>{% trans "Register for event " %}</legend>
2315+ <h3>{% trans "Register for event " %}</h3>
2316 {% if is_past_event %}
2317 <p><strong>{% trans "This event has finished!" %}</strong> {% trans "Feel free to change your registration status to reflect whether you actually attended; we're just making sure you know you're not signing up for an upcoming event :)" %}</p>
2318 {% endif %}
2319@@ -20,6 +21,7 @@
2320 {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}
2321 <input type="submit" name="submit" value="{% trans "Submit" %}" class="submit-button" />
2322 </form>
2323-</article>
2324+</section>
2325+</div>
2326
2327 {% endblock %}
2328
2329=== modified file 'loco_directory/templates/events/team_event_update.html'
2330--- loco_directory/templates/events/team_event_update.html 2011-10-05 00:50:53 +0000
2331+++ loco_directory/templates/events/team_event_update.html 2012-06-15 22:38:18 +0000
2332@@ -16,15 +16,17 @@
2333 {% endblock %}
2334
2335 {% block content %}
2336-<article class="main-content">
2337+<div class="row">
2338+<section class="span-9">
2339 <form action="." method="post">
2340 <fieldset>
2341- <legend>{% trans "Update Team Event" %}</legend>
2342+ <h3>{% trans "Update Team Event" %}</h3>
2343 {{ form.as_template }}
2344 </fieldset>
2345 {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}
2346 <input type="submit" name="submit" value="{% trans "Submit" %}" class="submit-button" />
2347 </form>
2348-</article>
2349+</section>
2350+</div>
2351
2352 {% endblock %}
2353
2354=== modified file 'loco_directory/templates/index.html'
2355--- loco_directory/templates/index.html 2011-10-10 14:16:42 +0000
2356+++ loco_directory/templates/index.html 2012-06-15 22:38:18 +0000
2357@@ -2,8 +2,8 @@
2358 {% load i18n %}
2359
2360 {% block sub_nav_links %}
2361-<a class="sub-nav-item" href="{% url about_loco %}">{% trans "About Local Community (LoCo) Teams" %}</a>
2362-<a class="sub-nav-item" href="{% url using_locodir %}">{% trans "Using the LoCo Team Portal" %}</a>
2363+<li><a class="sub-nav-item" href="{% url about_loco %}">{% trans "About Local Community (LoCo) Teams" %}</a></li>
2364+<li><a class="sub-nav-item" href="{% url using_locodir %}">{% trans "Using the LoCo Team Portal" %}</a></li>
2365 {% endblock %}
2366
2367 {% block extrahead %}{{block.super}}
2368@@ -20,9 +20,9 @@
2369 {% endblock %}
2370
2371 {% block content %}
2372-
2373+<div class="row">
2374+<section class="span-12">
2375 <h1 class="centered">{% trans "Ubuntu Local Community (LoCo) Team Portal" %}</h1>
2376- <article class="main-content">
2377 <ul id="continents">
2378 <li id="northamerica">
2379 <a href="{% url team-list %}#North%20America">
2380@@ -51,12 +51,10 @@
2381 </ul>
2382 <br />
2383 <p style="text-align: center; font-weight: bold;">{% trans "Click on your continent to find teams near you." %}</p>
2384-</article>
2385-
2386-<hr class="divide" />
2387-<br />
2388-
2389-<section class="double-side-content">
2390+</section></div>
2391+
2392+<div class="row">
2393+<section class="span-8">
2394 <h2>{% trans "Latest blog articles" %}</h2>
2395 {% for article in articles %}
2396 <article class="blog-entry">
2397@@ -81,15 +79,13 @@
2398 </article>
2399 {% endfor %}
2400 </section>
2401-
2402-<article class="side-content">
2403+<section class="span-4 last">
2404 <h2>{% if team_event_count %}{{ team_event_count }} {% endif %}{% trans "Upcoming Events" %}</h2>
2405 <a href="{% url event-list %}"><img src="{{ MEDIA_URL }}img/home-map.png" /></a>
2406-</article>
2407
2408-<article class="side-content">
2409 <h2>{% trans "Latest social messages" %}</h2>
2410 <div class="twidenash" id="locoteams"></div>
2411-</article>
2412+</section>
2413+</div>
2414
2415 {% endblock %}
2416
2417=== modified file 'loco_directory/templates/irc_chat.html'
2418--- loco_directory/templates/irc_chat.html 2011-10-05 00:50:53 +0000
2419+++ loco_directory/templates/irc_chat.html 2012-06-15 22:38:18 +0000
2420@@ -4,15 +4,16 @@
2421 {% block page_name %}{% trans "Ubuntu LoCo Teams IRC Chat" %}{% endblock %}
2422
2423 {% block content %}
2424-
2425+<div class="row">
2426+ <section class="span-12">
2427 <h1>{% trans "Ubuntu LoCo Teams IRC Chat" %}</h1>
2428
2429-<article class="main-content">
2430 <p>{% trans "Why not join other team members from different LoCos around the world on IRC in the #ubuntu-locoteams IRC channel. This is where LoCo enthusiasts like to hang out. It is open to everyone, you don't have to be a leader. This is the perfect channel to ask questions about LoCo team issues or planning events. It is also a great place to talk and socialize with members of other LoCo teams." %}</p>
2431 <p>{% trans "It's a great place to chat to with members from different teams, get ideas from them and learn how other teams interact. Why not join, idle and learn. Encourage other members of your LoCo to join this channel by mentioning it on your wiki page or in your IRC channel's topic." %}</p>
2432-</article>
2433+</section></div>
2434
2435-<article class="main-content alone">
2436+<div class="row">
2437+ <section class="span-12 alone">
2438 <h2>Webchat</h2>
2439 <br />
2440 <div id="ircchat">
2441@@ -22,6 +23,6 @@
2442 <iframe src="http://webchat.freenode.net/?channels=#ubuntu-locoteams&prompt=1&uio=MTE9MzE28&nick=locodir-user" width="900" height="400"></iframe>
2443 {% endif %}
2444 </div>
2445-</article>
2446+</section></div>
2447
2448 {% endblock %}
2449
2450=== modified file 'loco_directory/templates/loco_council.html'
2451--- loco_directory/templates/loco_council.html 2011-10-05 00:50:53 +0000
2452+++ loco_directory/templates/loco_council.html 2012-06-15 22:38:18 +0000
2453@@ -4,13 +4,13 @@
2454 {% block page_name %}{% trans "Ubuntu LoCo Council" %}{% endblock %}
2455
2456 {% block sub_nav_links %}
2457- <a class="sub-nav-item" href="approved">{% trans "Approved Teams" %}</a>
2458+ <li><a class="sub-nav-item" href="approved">{% trans "Approved Teams" %}</a></li>
2459 {% endblock %}
2460
2461 {% block content %}
2462-
2463+<div class="row">
2464+ <section class="span-12">
2465 <h1>{% trans "Ubuntu LoCo Council" %}</h1>
2466- <article class="main-content">
2467 <p>
2468 {% trans "The Ubuntu LoCo Council is comprised of elected, dedicated members of the Ubuntu Community. They have diverse backgrounds, but have a firm understanding of what makes up successful LoCos. The LoCo Council was set up to govern Ubuntu LoCo teams, and utilizing their past experiences, provide guidance and help when needed to these teams and lead them by example." %}
2469 </p>
2470@@ -41,5 +41,5 @@
2471 {% endwith %}
2472 {% endwith %}
2473 </p>
2474- </article>
2475+ </section></div>
2476 {% endblock %}
2477
2478=== modified file 'loco_directory/templates/loco_setup.html'
2479--- loco_directory/templates/loco_setup.html 2012-05-27 23:17:17 +0000
2480+++ loco_directory/templates/loco_setup.html 2012-06-15 22:38:18 +0000
2481@@ -4,12 +4,13 @@
2482 {% block page_name %}{% trans "Setting up a LoCo Team" %}{% endblock %}
2483
2484 {% block sub_nav_links %}
2485-<a class="sub-nav-item" href="{% url about_loco %}">{% trans "About Local Community (LoCo) Teams" %}</a>
2486+<li><a class="sub-nav-item" href="{% url about_loco %}">{% trans "About Local Community (LoCo) Teams" %}</a></li>
2487 {% endblock %}
2488
2489 {% block content %}
2490
2491-<article class="main-content">
2492+<div class="row">
2493+ <section class="span-12">
2494 <h2>{% trans "Setting up a Local Community (LoCo) Team" %}</h2>
2495 <p>{% blocktrans %}
2496 This page serves to help people who want to set up a LoCo Team in their
2497@@ -32,9 +33,10 @@
2498 Community which is one of the things that makes Ubuntu great. The LoCos are
2499 a very important part of the Ubuntu Community.
2500 {% endblocktrans %}</p>
2501-</article>
2502+</section></div>
2503
2504-<article class="main-content">
2505+<div class="row">
2506+ <section class="span-12">
2507 <h2>{% trans "Team naming standards and Setting up your team resources" %}</h2>
2508
2509 <h3>{% trans "Team Naming Standard" %}</h3>
2510@@ -116,9 +118,9 @@
2511 {% endblocktrans %}</p></dd>
2512 </dl>
2513
2514-</article>
2515-
2516-<article class="main-content">
2517+</section></div>
2518+<div class="row">
2519+ <section class="span-12">
2520 <h2>{% trans "So step by step:" %}</h2>
2521
2522 <dl>
2523@@ -160,6 +162,6 @@
2524 to help you as best we can.
2525 {% endblocktrans %}</p>
2526
2527-</article>
2528+</section></div>
2529
2530 {% endblock %}
2531
2532=== modified file 'loco_directory/templates/login_failure.html'
2533--- loco_directory/templates/login_failure.html 2011-11-12 01:43:27 +0000
2534+++ loco_directory/templates/login_failure.html 2012-06-15 22:38:18 +0000
2535@@ -20,7 +20,8 @@
2536
2537 {% block content %}
2538
2539-<article class="main-content">
2540+<div class="row">
2541+ <section class="span-12">
2542 <h2>{{message|safe}}</h2>
2543
2544 {% if exception %}
2545@@ -33,7 +34,7 @@
2546
2547 <p>{% trans "If you continue to experience problems with LoCo Team Portal, please " %} <a href='https://bugs.launchpad.net/loco-team-portal/+filebug'>{% trans "Report it!" %}</a>
2548 </p>
2549-</article>
2550+</section></div>
2551
2552 {% endblock %}
2553
2554
2555=== modified file 'loco_directory/templates/meetings/agenda_item_delete_confirm.html'
2556--- loco_directory/templates/meetings/agenda_item_delete_confirm.html 2011-10-05 00:50:53 +0000
2557+++ loco_directory/templates/meetings/agenda_item_delete_confirm.html 2012-06-15 22:38:18 +0000
2558@@ -5,7 +5,7 @@
2559 {% block page_name %}{% trans "Delete Agenda Item" %}{% endblock %}
2560
2561 {% block sub_nav_links %}
2562-<a class="sub-nav-item" href="{% url team-meeting-detail team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Back to Meeting Details" %}</a>
2563+<li><a class="sub-nav-item" href="{% url team-meeting-detail team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Back to Meeting Details" %}</a></li>
2564 {% endblock %}
2565
2566 {% block extrahead %}{{ block.super }}
2567@@ -13,10 +13,11 @@
2568 {% endblock %}
2569
2570 {% block content %}
2571-<article class="main-content">
2572+<div class="row">
2573+<section class="span-9">
2574 <form action="." method="post">
2575 <fieldset>
2576- <legend>{% trans "Delete Agenda Item" %}</legend>
2577+ <h3>{% trans "Delete Agenda Item" %}</h3>
2578 {% if agenda_item_object.children.all %}
2579 <p>{% trans 'Deleting this Agenda Item will also delete the following Agenda Items:' %}</p>
2580 {% recurse item.children.all with agenda_item_object.children.all as item %}
2581@@ -37,5 +38,6 @@
2582 <input type="submit" value="{% trans 'Delete' %}" />
2583 <a href="{{team_meeting_object.get_absolute_url}}">{% trans "Cancel" %}</a>
2584 </form>
2585-</article>
2586+</section>
2587+</div>
2588 {% endblock %}
2589
2590=== modified file 'loco_directory/templates/meetings/agenda_item_new.html'
2591--- loco_directory/templates/meetings/agenda_item_new.html 2011-10-05 00:50:53 +0000
2592+++ loco_directory/templates/meetings/agenda_item_new.html 2012-06-15 22:38:18 +0000
2593@@ -4,7 +4,7 @@
2594 {% block page_name %}{% trans "New Agenda Item" %}{% endblock %}
2595
2596 {% block sub_nav_links %}
2597-<a class="sub-nav-item" href="{% url team-meeting-detail team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Back to Meeting Details" %}</a>
2598+<li><a class="sub-nav-item" href="{% url team-meeting-detail team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Back to Meeting Details" %}</a></li>
2599 {% endblock %}
2600
2601 {% block extrahead %}{{ block.super }}
2602@@ -20,15 +20,17 @@
2603 {% endblock %}
2604
2605 {% block content %}
2606-<article class="main-content">
2607+<div class="row">
2608+<section class="span-9">
2609 <form action="." method="post">
2610 <fieldset>
2611- <legend>{% trans "Add new Agenda Item for " %}{{ team_meeting_object.name}}</legend>
2612+ <h3>{% trans "Add new Agenda Item for " %}{{ team_meeting_object.name}}</h3>
2613 {{ form.as_template }}
2614 </fieldset>
2615 {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}
2616 <input type="submit" name="submit" value="{% trans "Submit" %}" class="submit-button" />
2617 </form>
2618-</article>
2619+</section>
2620+</div>
2621
2622 {% endblock %}
2623
2624=== modified file 'loco_directory/templates/meetings/agenda_item_update.html'
2625--- loco_directory/templates/meetings/agenda_item_update.html 2011-10-05 00:50:53 +0000
2626+++ loco_directory/templates/meetings/agenda_item_update.html 2012-06-15 22:38:18 +0000
2627@@ -4,8 +4,8 @@
2628 {% block page_name %}{% trans "Update Agenda Item" %}{% endblock %}
2629
2630 {% block sub_nav_links %}
2631-<a class="sub-nav-item" href="{% url team-meeting-detail team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Back to Meeting Details" %}</a>
2632-<a class="sub-nav-item" href="{% url agenda-item-delete team_meeting_object.id agenda_item_object.id %}">{% trans "Delete Agenda Item" %}</a>
2633+<li><a class="sub-nav-item" href="{% url team-meeting-detail team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Back to Meeting Details" %}</a></li>
2634+<li><a class="sub-nav-item" href="{% url agenda-item-delete team_meeting_object.id agenda_item_object.id %}">{% trans "Delete Agenda Item" %}</a></li>
2635 {% endblock %}
2636
2637 {% block extrahead %}{{ block.super }}
2638@@ -21,15 +21,17 @@
2639 {% endblock %}
2640
2641 {% block content %}
2642-<article class="main-content">
2643+<div class="row">
2644+<section class="span-9">
2645 <form action="." method="post">
2646 <fieldset>
2647- <legend>{% trans "Update Agenda Item" %}</legend>
2648+ <h3>{% trans "Update Agenda Item" %}</h3>
2649 {{ form.as_template }}
2650 </fieldset>
2651 {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}
2652 <input type="submit" name="submit" value="{% trans "Submit" %}" class="submit-button" />
2653 </form>
2654-</article>
2655+ </section>
2656+</div>
2657
2658 {% endblock %}
2659
2660=== modified file 'loco_directory/templates/meetings/meeting_history_list.html'
2661--- loco_directory/templates/meetings/meeting_history_list.html 2011-10-05 00:50:53 +0000
2662+++ loco_directory/templates/meetings/meeting_history_list.html 2012-06-15 22:38:18 +0000
2663@@ -4,11 +4,12 @@
2664 {% block page_name %}{% trans "Ubuntu Teams Meeting History" %}{% endblock %}
2665
2666 {% block sub_nav_links %}
2667-<a class="sub-nav-item" href="{% url meeting-list %}">{% trans "Back to Meetings List" %}</a>
2668+<li><a class="sub-nav-item" href="{% url meeting-list %}">{% trans "Back to Meetings List" %}</a></li>
2669 {% endblock %}
2670
2671 {% block content %}
2672-<article class="main-content">
2673+<div class="row">
2674+<section class="span-12">
2675 <h2>{% trans "Ubuntu Teams Meeting History" %}</h2>
2676 {% if team_meeting_list %}
2677 <p>{% trans "Select a past team meeting below to see more information about it:" %}</p>
2678@@ -18,6 +19,6 @@
2679 {% else %}
2680 <p>{% trans "There have been no Team Meetings in the past :(" %}</p>
2681 {% endif %}
2682-
2683-</article>
2684+</section>
2685+</div>
2686 {% endblock %}
2687
2688=== modified file 'loco_directory/templates/meetings/meeting_list.html'
2689--- loco_directory/templates/meetings/meeting_list.html 2011-10-05 00:50:53 +0000
2690+++ loco_directory/templates/meetings/meeting_list.html 2012-06-15 22:38:18 +0000
2691@@ -4,12 +4,13 @@
2692 {% block page_name %}{% trans "Ubuntu Teams Meeting List" %}{% endblock %}
2693
2694 {% block sub_nav_links %}
2695-<a class="sub-nav-item" href="{% url team-meeting-select %}">{% trans "Add Team Meeting" %}</a>
2696-<a class="sub-nav-item" href="{% url meeting-history-list %}">{% trans "Past Meetings" %}</a>
2697+<li><a class="sub-nav-item" href="{% url team-meeting-select %}">{% trans "Add Team Meeting" %}</a></li>
2698+<li><a class="sub-nav-item" href="{% url meeting-history-list %}">{% trans "Past Meetings" %}</a></li>
2699 {% endblock %}
2700
2701 {% block content %}
2702-<article class="main-content">
2703+<div class="row">
2704+<section class="span-12">
2705 <h2>{% trans "Ubuntu Teams Meetings" %}
2706 {% if team_meeting_list %}
2707 <a class="teams_meeting_ical" href="{% url teams-meeting-list-ical %}">
2708@@ -22,5 +23,6 @@
2709 </h2><p>{% trans "There are currently no Team Meetings" %}</p>
2710 {% endif %}
2711
2712-</article>
2713+</section>
2714+</div>
2715 {% endblock %}
2716
2717=== modified file 'loco_directory/templates/meetings/team_meeting_delete_confirm.html'
2718--- loco_directory/templates/meetings/team_meeting_delete_confirm.html 2011-10-05 00:50:53 +0000
2719+++ loco_directory/templates/meetings/team_meeting_delete_confirm.html 2012-06-15 22:38:18 +0000
2720@@ -8,14 +8,16 @@
2721 {% endblock %}
2722
2723 {% block content %}
2724-<article class="main-content">
2725+<div class="row">
2726+<section class="span-9">
2727 <form action="." method="post">
2728 <fieldset>
2729- <legend>{% trans "Delete Team Meeting" %}</legend>
2730+ <h3>{% trans "Delete Team Meeting" %}</h3>
2731 <label>{% blocktrans with team_meeting_object.name as meetingname %}Do you really want to delete the Team Meeting: {{meetingname}}?{% endblocktrans %}</label>
2732 </fieldset>
2733 <input type="submit" value="Submit" />
2734 <a href="{{team_meeting_object.get_absolute_url}}">{% trans "Cancel" %}</a>
2735 </form>
2736-</article>
2737+</section>
2738+</div>
2739 {% endblock %}
2740
2741=== modified file 'loco_directory/templates/meetings/team_meeting_detail.html'
2742--- loco_directory/templates/meetings/team_meeting_detail.html 2011-11-12 18:35:35 +0000
2743+++ loco_directory/templates/meetings/team_meeting_detail.html 2012-06-15 22:38:18 +0000
2744@@ -12,15 +12,15 @@
2745 {% endblock %}
2746
2747 {% block sub_nav_links %}
2748-{% for team in team_meeting_object.teams.all %}<a class="sub-nav-item" href="{{ team.get_absolute_url }}">{{ team.name }}</a>{% endfor %}
2749+{% for team in team_meeting_object.teams.all %}<li><a class="sub-nav-item" href="{{ team.get_absolute_url }}">{{ team.name }}</a>{% endfor %}</li>
2750 {% if user.is_authenticated %}
2751 {% if user_is_team_member %}
2752- <a class="sub-nav-item" href="{% url team-meeting-update team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Edit Details" %}</a>
2753- <a class="sub-nav-item" href="{% url team-meeting-delete team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Delete Meeting" %}</a>
2754- <a class="sub-nav-item" href="{% url team-meeting-copy team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Copy Meeting" %}</a>
2755+ <li><a class="sub-nav-item" href="{% url team-meeting-update team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Edit Details" %}</a></li>
2756+ <li><a class="sub-nav-item" href="{% url team-meeting-delete team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Delete Meeting" %}</a></li>
2757+ <li><a class="sub-nav-item" href="{% url team-meeting-copy team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Copy Meeting" %}</a></li>
2758 {% endif %}
2759 {% endif %}
2760-<a class="sub-nav-item" href="{% url meeting-ical team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "iCal Feed" %}</a>
2761+<li><a class="sub-nav-item" href="{% url meeting-ical team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "iCal Feed" %}</a></li>
2762 {% endblock %}
2763
2764 {% block content %}
2765
2766=== modified file 'loco_directory/templates/meetings/team_meeting_detail.inc.html'
2767--- loco_directory/templates/meetings/team_meeting_detail.inc.html 2011-02-03 01:43:39 +0000
2768+++ loco_directory/templates/meetings/team_meeting_detail.inc.html 2012-06-15 22:38:18 +0000
2769@@ -1,17 +1,22 @@
2770 {% load i18n %}
2771-<article class="main-content">
2772+<div class="row">
2773+ <section class="span-12">
2774 <h2>{{team_meeting_object.name}}</h2>
2775
2776 <h3>{% trans "Details" %}</h3>
2777 {% include "meetings/team_meeting_detail_basic.inc.html" %}
2778-</article>
2779+ </section>
2780+</div>
2781
2782-<article class="main-content">
2783+<div class="row">
2784+ <section class="span-12">
2785 <h3>{% trans "Agenda" %}</h3>
2786 {% include "meetings/team_meeting_detail_agenda.inc.html" %}
2787-</article>
2788+ </section>
2789+</div>
2790
2791-<article class="main-content">
2792+<div class="row">
2793+ <section class="span-12">
2794 {% block general %}
2795 <div id="webchat">
2796 {% if user.is_authenticated %}
2797@@ -21,4 +26,5 @@
2798 {% endif %}
2799 </div>
2800 {% endblock %}
2801-</article>
2802+ </section>
2803+</div>
2804
2805=== modified file 'loco_directory/templates/meetings/team_meeting_new.html'
2806--- loco_directory/templates/meetings/team_meeting_new.html 2011-10-05 00:50:53 +0000
2807+++ loco_directory/templates/meetings/team_meeting_new.html 2012-06-15 22:38:18 +0000
2808@@ -16,15 +16,17 @@
2809 {% endblock %}
2810
2811 {% block content %}
2812-<article class="main-content">
2813+<div class="row">
2814+ <section class="span-9">
2815 <form action="." method="post">
2816 <fieldset>
2817- <legend>{% trans "Add new Team Meeting for " %}{{ team_object.name}}</legend>
2818+ <h3>{% trans "Add new Team Meeting for " %}{{ team_object.name}}</h3>
2819 {{ form.as_template }}
2820 </fieldset>
2821 {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}
2822 <input type="submit" name="submit" value="{% trans "Submit" %}" class="submit-button" />
2823 </form>
2824-</article>
2825+ </section>
2826+</div>
2827
2828 {% endblock %}
2829
2830=== modified file 'loco_directory/templates/meetings/team_meeting_new_select.html'
2831--- loco_directory/templates/meetings/team_meeting_new_select.html 2011-10-05 00:50:53 +0000
2832+++ loco_directory/templates/meetings/team_meeting_new_select.html 2012-06-15 22:38:18 +0000
2833@@ -4,7 +4,8 @@
2834 {% block page_name %}{% trans "New Team Meeting" %}{% endblock %}
2835
2836 {% block content %}
2837-<article class="main-content alone">
2838+<div class="row">
2839+<section class="span-12">
2840 <h2>{% trans "Select a Team to add an meeting for" %}:</h2>
2841 <p>
2842 <ul>
2843@@ -13,6 +14,7 @@
2844 {% endfor %}
2845 </ul>
2846 </p>
2847-</article>
2848+</section>
2849+</div>
2850
2851 {% endblock %}
2852
2853=== modified file 'loco_directory/templates/meetings/team_meeting_update.html'
2854--- loco_directory/templates/meetings/team_meeting_update.html 2011-10-05 00:50:53 +0000
2855+++ loco_directory/templates/meetings/team_meeting_update.html 2012-06-15 22:38:18 +0000
2856@@ -16,15 +16,17 @@
2857 {% endblock %}
2858
2859 {% block content %}
2860-<article class="main-content">
2861+<div class="row">
2862+ <section class="span-9">
2863 <form action="." method="post">
2864 <fieldset>
2865- <legend>{% trans "Update Team Meeting" %}</legend>
2866+ <h3>{% trans "Update Team Meeting" %}</h3>
2867 {{ form.as_template }}
2868 </fieldset>
2869 {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}
2870 <input type="submit" name="submit" value="{% trans "Submit" %}" class="submit-button" />
2871 </form>
2872-</article>
2873+ </section>
2874+</div>
2875
2876 {% endblock %}
2877
2878=== modified file 'loco_directory/templates/site_search.html'
2879--- loco_directory/templates/site_search.html 2011-01-23 15:02:32 +0000
2880+++ loco_directory/templates/site_search.html 2012-06-15 22:38:18 +0000
2881@@ -6,7 +6,8 @@
2882 {% if q %}
2883
2884 {% if teams %}
2885-<article class="main-content">
2886+<div class="row">
2887+ <section class="span-12">
2888 <h2>{% trans "Teams" %}</h2>
2889 <ul>
2890 {{colcycle.reset}}
2891@@ -14,12 +15,13 @@
2892 <li title="{% if team.approved %}{% blocktrans with team.name as teamname %}{{ teamname }} approved{% endblocktrans %}{% else %}{% blocktrans with team.name as teamname %}{{ teamname }} not approved{% endblocktrans %}{% endif %}" class="{% if team.approved %}approved{% else %}unapproved{% endif %} {{colcycle.next}}"><a href="{{ team.get_absolute_url }}">{{ team.name }}</a></li>
2893 {% endfor %}
2894 </ul>
2895-</article>
2896+</section></div>
2897 <hr class="divide" />
2898 {% endif %}
2899
2900 {% if global_events %}
2901-<article class="main-content">
2902+<div class="row">
2903+ <section class="span-12">
2904 <h2>{% trans "Global Events" %}</h2>
2905 {{colcycle.reset}}
2906 <ul>
2907@@ -27,12 +29,13 @@
2908 <li class="{{colcycle.next}}"><a href="{{ event.get_absolute_url }}">{{ event.name }}</a> {{event.date_begin|date}} - {{event.date_end|date}}</li>
2909 {% endfor %}
2910 </ul>
2911-</article>
2912+</section></div>
2913 <hr class="divide" />
2914 {% endif %}
2915
2916 {% if team_events %}
2917-<article class="main-content">
2918+<div class="row">
2919+ <section class="span-12">
2920 <h2>{% trans "Team Events" %}</h2>
2921 {{colcycle.reset}}
2922 <ul>
2923@@ -40,12 +43,13 @@
2924 <li class="{{colcycle.next}}"><a href="{{ event.get_absolute_url }}">{{ event.name }}</a>{% if event.venue.city %}, {{ event.venue.city }}{% endif %} - {% for team in event.teams.all %}<a title="{% trans "more information about this team" %}" href="{{ team.get_absolute_url }}">{{ team.name }}</a>{% endfor %}</li>
2925 {% endfor %}
2926 </ul>
2927-</article>
2928+</section></div>
2929 <hr class="divide" />
2930 {% endif %}
2931
2932 {% if venues %}
2933-<article class="main-content">
2934+<div class="row">
2935+ <section class="span-12">
2936 <h2>{% trans "Venues" %}</h2>
2937 {{colcycle.reset}}
2938 <ul>
2939@@ -53,12 +57,13 @@
2940 <li class="{{colcycle.next}}"><a href="{{ venue.get_absolute_url }}">{{ venue.name }}</a>{% if venue.city %}, {{ venue.city }}{% endif %}</li>
2941 {% endfor %}
2942 </ul>
2943-</article>
2944+</section></div>
2945 <hr class="divide" />
2946 {% endif %}
2947
2948 {% if meetings %}
2949-<article class="main-content">
2950+<div class="row">
2951+ <section class="span-12">
2952 <h2>{% trans "Meetings" %}</h2>
2953 {{colcycle.reset}}
2954 <ul>
2955@@ -69,15 +74,16 @@
2956 </li>
2957 {% endfor %}
2958 </ul>
2959-</article>
2960+</section></div>
2961 <hr class="divide" />
2962 {% endif %}
2963
2964 {% else %}
2965-<article class="main-content alone">
2966+<div class="row">
2967+ <section class="span-12">
2968 <center>
2969 <h3>{% trans "No search terms provided" %}</h3>
2970 </center>
2971-</article>
2972+</section></div>
2973 {% endif %}
2974 {% endblock %}
2975
2976=== modified file 'loco_directory/templates/teams/merge_teams.html'
2977--- loco_directory/templates/teams/merge_teams.html 2011-10-05 00:50:53 +0000
2978+++ loco_directory/templates/teams/merge_teams.html 2012-06-15 22:38:18 +0000
2979@@ -3,21 +3,21 @@
2980
2981 {% block page_name %}{% trans "Merge Teams" %}{% endblock %}
2982 {% block extrahead %}{{ block.super }}
2983-<link rel="stylesheet" type="text/css" href="/media/css/newstyle.css" />
2984 {% endblock %}
2985
2986 {% block content %}
2987-
2988+<div class="row">
2989+<section class="span-12">
2990 <h1>{% trans "Merge Teams" %}</h1>
2991
2992 <hr class="divide" />
2993
2994-<article class="minor-content alone">
2995 {% if not team_object or not other_team_object %}
2996 <p>{% trans "You need two valid teams you want to merge with another." %}</p>
2997 {% else %}
2998 <p><a href="{% url team-detail other_team_object %}">{% blocktrans with other_team_object.name as teamname %}Go back to the main page of {{teamname}}.{% endblocktrans %}</a></p>
2999 {% endif %}
3000-</article>
3001+</section>
3002+</div>
3003
3004 {% endblock %}
3005
3006=== modified file 'loco_directory/templates/teams/my_teams.html'
3007--- loco_directory/templates/teams/my_teams.html 2011-10-05 00:50:53 +0000
3008+++ loco_directory/templates/teams/my_teams.html 2012-06-15 22:38:18 +0000
3009@@ -26,20 +26,20 @@
3010 {% endfor %}
3011 {% endblock %}
3012
3013-
3014 {% block sub_nav_links %}
3015- <a class="sub-nav-item" href="{% url my-teams %}" title="{% trans 'My Teams' %}">{% trans "My Teams" %}</a>
3016- <a class="sub-nav-item" href="{% url team-list %}" title="{% trans 'All Teams' %}">{% trans "All Teams" %}</a>
3017+ <li><a class="sub-nav-item" href="{% url my-teams %}" title="{% trans 'My Teams' %}">{% trans "My Teams" %}</a></li>
3018+ <li><a class="sub-nav-item" href="{% url team-list %}" title="{% trans 'All Teams' %}">{% trans "All Teams" %}</a></li>
3019 {% comment %}
3020 <!-- TODO: Need to create those pages -->
3021- <a class="sub-nav-item" href="" title="{% trans 'Join a Team' %}">{% trans "Join a Team" %}</a>
3022- <a class="sub-nav-item" href="" title="{% trans 'Create a Team' %}">{% trans "Create a Team" %}</a>
3023+ <li><a class="sub-nav-item" href="" title="{% trans 'Join a Team' %}">{% trans "Join a Team" %}</a></li>
3024+ <li><a class="sub-nav-item" href="" title="{% trans 'Create a Team' %}">{% trans "Create a Team" %}</a></li>
3025 {% endcomment %}
3026 {% endblock %}
3027
3028 {% block content %}
3029 {% for team in teams %}
3030- <article class="main-content">
3031+<div class="row">
3032+<section class="span-12">
3033 <h2 class="dynamic-width">
3034 <a href="{% url team-detail team_slug=team.lp_name %}" class="team-title" title="{{ team.name }}">{{ team.name }}</a>
3035 {% comment %}
3036@@ -97,6 +97,7 @@
3037 {% endif %}
3038 {% endif %}
3039 </section>
3040- </article>
3041+ </section>
3042+ </div>
3043 {% endfor %}
3044 {% endblock %}
3045
3046=== modified file 'loco_directory/templates/teams/select_other_team.html'
3047--- loco_directory/templates/teams/select_other_team.html 2011-10-05 00:50:53 +0000
3048+++ loco_directory/templates/teams/select_other_team.html 2012-06-15 22:38:18 +0000
3049@@ -3,16 +3,16 @@
3050
3051 {% block page_name %}{% trans "Merge Teams" %}{% endblock %}
3052 {% block extrahead %}{{ block.super }}
3053-<link rel="stylesheet" type="text/css" href="/media/css/newstyle.css" />
3054 {% endblock %}
3055
3056 {% block content %}
3057
3058+<div class="row">
3059+<section class="span-12 alone">
3060 <h1>{% trans "Merge Teams" %}</h1>
3061
3062 <hr class="divide" />
3063
3064-<article class="minor-content alone">
3065 {% if other_teams %}
3066 <h2>{% blocktrans with team_object.lp_name as teamname %}Select the team you want to merge "{{teamname}}" with:{% endblocktrans %}</h2>
3067 <table width="100%">
3068@@ -31,6 +31,7 @@
3069 {% if not other_teams %}
3070 <p>{% trans "There are currently no teams you could merge your team with." %}</p>
3071 {% endif %}
3072-</article>
3073+</section>
3074+</div>
3075
3076 {% endblock %}
3077
3078=== modified file 'loco_directory/templates/teams/team_detail.html'
3079--- loco_directory/templates/teams/team_detail.html 2011-12-19 13:14:36 +0000
3080+++ loco_directory/templates/teams/team_detail.html 2012-06-15 22:38:18 +0000
3081@@ -8,12 +8,12 @@
3082 {% endblock %}
3083
3084 {% block sub_nav_links %}
3085- <a class="sub-nav-item" href="{% url team-list %}" title="{% trans "Back to Teams List" %}">{% trans "Back to Teams List" %}</a>
3086- {% if is_member %}{% else %} <a class="sub-nav-item" href="https://launchpad.net/~{{ team.lp_name }}/+join">{% trans "Join This Team!" %}</a>{% endif %}
3087- {% if is_admin %}<a class="sub-nav-item" href="{% url team-edit team.lp_name %}" title="{% trans "Edit Details" %}">{% trans "Edit Details" %}</a>{% endif %}
3088- {% if is_admin and not team.active %}<a class="sub-nav-item" href="{% url select-other-team team.lp_name %}" title="{% trans "Merge with another team" %}">{% trans "Merge team" %}</a>{% endif %}
3089- {% if is_member %}<a class="sub-nav-item" href="{% url team-event-new team.lp_name %}" title="{% trans "Add New Event" %}">{% trans "Add New Event" %}</a>{% endif %}
3090- {% if is_member %}<a class="sub-nav-item" href="{% url team-meeting-new team.lp_name %}" title="{% trans "Add New Meeting" %}">{% trans "Add New Meeting" %}</a>{% endif %}
3091+ <li><a class="sub-nav-item" href="{% url team-list %}" title="{% trans "Back to Teams List" %}">{% trans "Back to Teams List" %}</a></li>
3092+ {% if is_member %}{% else %}<li><a class="sub-nav-item" href="https://launchpad.net/~{{ team.lp_name }}/+join">{% trans "Join This Team!" %}</a></li>{% endif %}
3093+ {% if is_admin %}<li><a class="sub-nav-item" href="{% url team-edit team.lp_name %}" title="{% trans "Edit Details" %}">{% trans "Edit Details" %}</a></li>{% endif %}
3094+ {% if is_admin and not team.active %}<li><a class="sub-nav-item" href="{% url select-other-team team.lp_name %}" title="{% trans "Merge with another team" %}">{% trans "Merge team" %}</a></li>{% endif %}
3095+ {% if is_member %}<li><a class="sub-nav-item" href="{% url team-event-new team.lp_name %}" title="{% trans "Add New Event" %}">{% trans "Add New Event" %}</a></li>{% endif %}
3096+ {% if is_member %}<li><a class="sub-nav-item" href="{% url team-meeting-new team.lp_name %}" title="{% trans "Add New Meeting" %}">{% trans "Add New Meeting" %}</a></li>{% endif %}
3097 {% endblock %}
3098
3099
3100@@ -70,8 +70,8 @@
3101 {% endblock %}
3102
3103 {% block content %}
3104-
3105-<article class="minor-content relative">
3106+<div class="row">
3107+ <section class="span8">
3108 <h2><a href="https://launchpad.net/~{{ team.lp_name }}">{{ team.name }}</a></h2>
3109 <img id="locobranding" src="{{ team.mugshot_url }}" alt="" title="{{ team.name }}" />
3110 <table>
3111@@ -176,12 +176,8 @@
3112 </td>
3113 </tr>
3114 </table>
3115-</article>
3116-{% comment %}
3117-<article class="minor-content">
3118- <img id="locobranding" src="{{ team.mugshot_url }}" alt="" title="{{ team.name }}" />
3119-</article>
3120-{% endcomment %}
3121+</section>
3122+</div>
3123
3124 {% if team.microbloghashtag %}
3125 <article class="minor-content alone">
3126@@ -203,14 +199,16 @@
3127 {% endif %}
3128
3129 {% if team.flickr_id or team.picasa_id or team.pixie_id %}
3130-<article class="main-content">
3131+<div class="row">
3132+ <section class="span-12">
3133 {% with team.name as team_name %}
3134 <h2>{% blocktrans %}Photos from {{ team_name }}{% endblocktrans %}</h2>
3135 {% endwith %}
3136 <div id="flickr"> </div>
3137 <div id="picasa"> </div>
3138 <div id="pixie"> </div>
3139-</article>
3140+ </section>
3141+</div>
3142 {% endif %}
3143
3144 {% endblock %}
3145
3146=== modified file 'loco_directory/templates/teams/team_event_history.html'
3147--- loco_directory/templates/teams/team_event_history.html 2011-10-05 00:50:53 +0000
3148+++ loco_directory/templates/teams/team_event_history.html 2012-06-15 22:38:18 +0000
3149@@ -4,12 +4,13 @@
3150 {% block page_name %}{% blocktrans with team_object.name as teamname %}{{teamname}} Events History{% endblocktrans %}{% endblock %}
3151
3152 {% block sub_nav_links %}
3153-<a class="sub-nav-item" href="{% url team-detail team_object.lp_name %}">{% trans "Back to Team Details" %}</a>
3154-<a class="sub-nav-item" href="{% url team-event-list team_object.lp_name %}">{% trans "Upcoming Events" %}</a>
3155+<li><a class="sub-nav-item" href="{% url team-detail team_object.lp_name %}">{% trans "Back to Team Details" %}</a></li>
3156+<li><a class="sub-nav-item" href="{% url team-event-list team_object.lp_name %}">{% trans "Upcoming Events" %}</a></li>
3157 {% endblock %}
3158
3159 {% block content %}
3160-<article class="main-content">
3161+<div class="row">
3162+<section class="span-12">
3163 <h1>{% blocktrans with team_object.name as teamname %}{{teamname}} Events History{% endblocktrans %}</h1>
3164
3165 {% if team_event_list %}
3166@@ -21,6 +22,6 @@
3167 <p>{% blocktrans with team_object.lp_name as teamname %}There are no past events for LoCo Team {{teamname}} :({% endblocktrans %}</p>
3168 {% endif %}
3169
3170-
3171-</article>
3172+</section>
3173+</div>
3174 {% endblock %}
3175
3176=== modified file 'loco_directory/templates/teams/team_event_list.html'
3177--- loco_directory/templates/teams/team_event_list.html 2011-10-05 00:50:53 +0000
3178+++ loco_directory/templates/teams/team_event_list.html 2012-06-15 22:38:18 +0000
3179@@ -4,10 +4,10 @@
3180 {% block page_name %}{% blocktrans with team_object.name as teamname %}{{teamname}} Events List{% endblocktrans %}{% endblock %}
3181
3182 {% block sub_nav_links %}
3183-<a class="sub-nav-item" href="{% url team-detail team_object.lp_name %}">{% trans "Back to Team Details" %}</a>
3184-<a class="sub-nav-item" href="{% url team-event-history team_object.lp_name %}">{% trans "Past Events" %}</a>
3185-<a class="sub-nav-item" href="{% url team-events-rss team_object.lp_name %}" title="{% trans "Team Events (RSS)" %}"">{% trans "Team Events (RSS)" %}</a>
3186-{% if is_member %}<a class="sub-nav-item" href="{% url team-event-new team_object.lp_name %}" title="{% trans "Add New Event" %}">{% trans "Add New Event" %}</a>{% endif %}
3187+<li><a class="sub-nav-item" href="{% url team-detail team_object.lp_name %}">{% trans "Back to Team Details" %}</a></li>
3188+<li><a class="sub-nav-item" href="{% url team-event-history team_object.lp_name %}">{% trans "Past Events" %}</a></li>
3189+<li><a class="sub-nav-item" href="{% url team-events-rss team_object.lp_name %}" title="{% trans "Team Events (RSS)" %}"">{% trans "Team Events (RSS)" %}</a></li>
3190+{% if is_member %}<li><a class="sub-nav-item" href="{% url team-event-new team_object.lp_name %}" title="{% trans "Add New Event" %}">{% trans "Add New Event" %}</a></li>{% endif %}
3191 {% endblock %}
3192
3193
3194@@ -16,7 +16,8 @@
3195 {% endblock %}
3196
3197 {% block content %}
3198-<article class="main-content">
3199+<div class="row">
3200+<section class="span-12">
3201 <h1>{% blocktrans with team_object.name as teamname %}{{teamname}} Events List{% endblocktrans %}
3202 <a class="teams_event_ical" href="{% url team-event-list-ical team_object.lp_name %}">
3203 <img src="/media/images/ical32.png" title="ical"/></a></h1>
3204@@ -30,7 +31,6 @@
3205 <h2>{% blocktrans %}There are currently no events for this team.{% endblocktrans %}</h2>
3206 {% endif %}
3207
3208-
3209-
3210-</article>
3211+</section>
3212+</div>
3213 {% endblock %}
3214
3215=== modified file 'loco_directory/templates/teams/team_list.html'
3216--- loco_directory/templates/teams/team_list.html 2011-11-03 18:07:11 +0000
3217+++ loco_directory/templates/teams/team_list.html 2012-06-15 22:38:18 +0000
3218@@ -11,16 +11,18 @@
3219 {% endblock %}
3220
3221 {% block content %}
3222-
3223-<article class="teams-legend">
3224+<div class="row">
3225+ <section class="span-12 teams-legend">
3226 <ul>
3227 <li class="approved float_list">{% trans "Approved Teams" %}</li>
3228 <li class="unapproved float_list">{% trans "Unapproved Teams" %}</li>
3229 </ul>
3230-</article>
3231+ </section>
3232+</div>
3233
3234 {% for continent in continents %}{% if continent.related_teams %}
3235- <article class="main-content">
3236+<div class="row">
3237+ <section class="span-12">
3238 <h2><a name="{{continent.name}}">{{continent.name}}</a></h2>
3239 <ul>
3240 {{colcycle.reset}}
3241@@ -28,12 +30,14 @@
3242 <li title="{% if team.approved %}{% blocktrans with team.display_name as teamname %}{{ teamname }} approved{% endblocktrans %}{% else %}{% blocktrans with team.display_name as teamname %}{{ teamname }} not approved{% endblocktrans %}{% endif %}" class="{% if team.approved %}approved{% else %}unapproved{% endif %} {{colcycle.next}}"><a href="{{ team.get_absolute_url }}">{{ team.display_name }}</a></li>
3243 {% endfor %}
3244 </ul>
3245- </article>
3246+ </section>
3247+</div>
3248 <br class="clear" />
3249 {% endif %}{% endfor %}
3250
3251 {% if countries_without_continent_have_teams %}
3252- <article class="main-content">
3253+ <div class="row">
3254+ <section class="span-12">
3255 <h2>{% trans "Countries without continent" %}</h2>
3256 {% for country in countries_without_continent %}{% if country.country_without_continent_related_teams %}
3257 <h3>{{country.name}}</h3>
3258@@ -45,11 +49,13 @@
3259 </ul>
3260 <br class="clear" />
3261 {% endif %}{% endfor %}
3262- </article>
3263+ </section>
3264+</div>
3265 {% endif %}
3266
3267 {% if teams_without_country %}
3268- <article class="main-content">
3269+ <div class="row">
3270+ <section class="span-12">
3271 <h2>{% trans "Teams without country" %}</h2>
3272 <ul>
3273 {{colcycle.reset}}
3274@@ -58,7 +64,8 @@
3275 {% endfor %}
3276 </ul>
3277 <br class="clear" />
3278- </article>
3279+ </section>
3280+</div>
3281 {% endif %}
3282
3283 {% endblock %}
3284
3285=== modified file 'loco_directory/templates/teams/team_meeting_history.html'
3286--- loco_directory/templates/teams/team_meeting_history.html 2011-10-05 00:50:53 +0000
3287+++ loco_directory/templates/teams/team_meeting_history.html 2012-06-15 22:38:18 +0000
3288@@ -4,12 +4,13 @@
3289 {% block page_name %}{% blocktrans with team_object.name as teamname %}{{teamname}} Meeting History{% endblocktrans %}{% endblock %}
3290
3291 {% block sub_nav_links %}
3292-<a class="sub-nav-item" href="{% url team-detail team_object.lp_name %}">{% trans "Back to Team Details" %}</a>
3293-<a class="sub-nav-item" href="{% url team-meeting-list team_object.lp_name %}">{% trans "Upcoming Meetings" %}</a>
3294+<li><a class="sub-nav-item" href="{% url team-detail team_object.lp_name %}">{% trans "Back to Team Details" %}</a></li>
3295+<li><a class="sub-nav-item" href="{% url team-meeting-list team_object.lp_name %}">{% trans "Upcoming Meetings" %}</a></li>
3296 {% endblock %}
3297
3298 {% block content %}
3299-<article class="main-content">
3300+<div class="row">
3301+<section class="span-12">
3302 <h1>{% blocktrans with team_object.name as teamname %}{{teamname}} Meeting History{% endblocktrans %}</h1>
3303
3304 {% if team_meeting_list %}
3305@@ -21,5 +22,6 @@
3306 <p>{% blocktrans with team_object.lp_name as teamname %}There are no past meetings for {{teamname}} :({% endblocktrans %}</p>
3307 {% endif %}
3308
3309-</article>
3310+</section>
3311+</div>
3312 {% endblock %}
3313
3314=== modified file 'loco_directory/templates/teams/team_meeting_list.html'
3315--- loco_directory/templates/teams/team_meeting_list.html 2011-10-05 00:50:53 +0000
3316+++ loco_directory/templates/teams/team_meeting_list.html 2012-06-15 22:38:18 +0000
3317@@ -4,9 +4,9 @@
3318 {% block page_name %}{% blocktrans with team_object.name as teamname %}{{teamname}} Meeting List{% endblocktrans %}{% endblock %}
3319
3320 {% block sub_nav_links %}
3321-<a class="sub-nav-item" href="{% url team-detail team_object.lp_name %}">{% trans "Back to Team Details" %}</a>
3322-<a class="sub-nav-item" href="{% url team-meeting-history team_object.lp_name %}">{% trans "Past Meetings" %}</a>
3323-<a class="sub-nav-item" href="{% url team-meetings-rss team_object.lp_name %}" title="{% trans "Team Meetings (RSS)" %}"">{% trans "Team Meetings (RSS)" %}</a>
3324+<li><a class="sub-nav-item" href="{% url team-detail team_object.lp_name %}">{% trans "Back to Team Details" %}</a></li>
3325+<li><a class="sub-nav-item" href="{% url team-meeting-history team_object.lp_name %}">{% trans "Past Meetings" %}</a></li>
3326+<li><a class="sub-nav-item" href="{% url team-meetings-rss team_object.lp_name %}" title="{% trans "Team Meetings (RSS)" %}"">{% trans "Team Meetings (RSS)" %}</a></li>
3327 {% endblock %}
3328
3329
3330@@ -15,7 +15,8 @@
3331 {% endblock %}
3332
3333 {% block content %}
3334-<article class="main-content">
3335+<div class="row">
3336+<section class="span-12">
3337 <h1>{% blocktrans with team_object.name as teamname %}{{teamname}} Meeting List{% endblocktrans %}
3338 <a class="teams_meeting_ical" href="{% url team-meeting-list-ical team_object.lp_name %}">
3339 <img src="/media/images/ical32.png" title="ical"/></a></h1>
3340@@ -29,5 +30,6 @@
3341 <p>{% blocktrans with team_object.lp_name as teamname %}There are currently no meetings for {{teamname}} :({% endblocktrans %}</p>
3342 {% endif %}
3343
3344-</article>
3345+</section>
3346+</div>
3347 {% endblock %}
3348
3349=== modified file 'loco_directory/templates/teams/team_reapprovals.html'
3350--- loco_directory/templates/teams/team_reapprovals.html 2011-10-05 00:50:53 +0000
3351+++ loco_directory/templates/teams/team_reapprovals.html 2012-06-15 22:38:18 +0000
3352@@ -3,17 +3,16 @@
3353
3354 {% block page_name %}{% trans "Approved Ubuntu LoCo Teams" %}{% endblock %}
3355
3356-{% block extrahead %}{{ block.super }}
3357-<link rel="stylesheet" type="text/css" href="/media/css/newstyle.css" />
3358-{% endblock %}
3359+{% block extrahead %}{{ block.super }}{% endblock %}
3360
3361 {% block content %}
3362-
3363+<div class="row">
3364+<section class="span-12">
3365 <h1>{% trans "Approved Ubuntu LoCo Teams" %}</h1>
3366-
3367-<hr class="divide" />
3368-
3369-<article class="minor-content">
3370+</section>
3371+</div>
3372+<div class="row">
3373+<section class="span-8">
3374 {% with '</a>' as end_link %}
3375 {% with '<a href="https://wiki.ubuntu.com/LoCoGettingApproved">' as approved_link %}
3376 {% with '<a href="https://wiki.ubuntu.com/LoCoFAQ">' as faq_link %}
3377@@ -34,10 +33,8 @@
3378 {% endwith %}
3379 {% endwith %}
3380 {% endwith %}
3381-</article>
3382-
3383-
3384-<article class="minor-content alone">
3385+</section>
3386+<section class="span-4 last">
3387 <h2>{% trans "Approved Teams:" %}</h2>
3388 <br />
3389 {% if next_teams %}
3390@@ -74,6 +71,7 @@
3391 {% if not next_teams and not later_teams %}
3392 <p>{% trans "There are currently no approved teams in the Ubuntu LoCo Team Portal. :(" %}</p>
3393 {% endif %}
3394-</article>
3395+</section>
3396+</div>
3397
3398 {% endblock %}
3399
3400=== modified file 'loco_directory/templates/teams/team_update.html'
3401--- loco_directory/templates/teams/team_update.html 2011-10-05 00:50:53 +0000
3402+++ loco_directory/templates/teams/team_update.html 2012-06-15 22:38:18 +0000
3403@@ -16,13 +16,15 @@
3404 {% endblock %}
3405
3406 {% block sub_nav_links %}
3407- <a class="sub-nav-item" href="/teams">{% trans "Back to Teams List" %}</a>
3408- <a class="sub-nav-item" href="/teams/{{ team.lp_name }}">{% trans "Back to Team Details" %}</a>
3409+ <li><a class="sub-nav-item" href="/teams">{% trans "Back to Teams List" %}</a></li>
3410+ <li><a class="sub-nav-item" href="/teams/{{ team.lp_name }}">{% trans "Back to Team Details" %}</a></li>
3411 {% endblock %}
3412
3413 {% block content %}
3414
3415- <article id="form" class="main-content">
3416+<div class="row">
3417+<section class="span-9">
3418+ <article id="form">
3419 {% if form.errors %}
3420 <p style="color: red;">
3421 {% trans "Please correct the error" %}{{ form.errors|pluralize }} below.
3422@@ -31,11 +33,11 @@
3423
3424 <form action="{{ request.path_info }}" method="POST">
3425 <fieldset>
3426- <legend>{% trans "Update the information below" %}</legend>
3427+ <h3>{% trans "Update the information below" %}</h3>
3428 {{ form.as_template }}
3429 </fieldset>
3430 <fieldset>
3431- <legend>{% trans "Static information" %}</legend>
3432+ <h3>{% trans "Static information" %}</h3>
3433 <div class="approved">
3434 <div class="field"><label for="approved">Approved :</label></div>
3435 <span class="extra">{% if team.approved %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}</span>
3436@@ -54,6 +56,7 @@
3437 {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}
3438 <input type="submit" name="submit" value="{% trans "Update Information Now!" %}" class="submit-button" />
3439 </form>
3440- </article>
3441+ </section>
3442+</div>
3443
3444 {% endblock %}
3445
3446=== modified file 'loco_directory/templates/using_locodir.html'
3447--- loco_directory/templates/using_locodir.html 2011-10-05 00:50:53 +0000
3448+++ loco_directory/templates/using_locodir.html 2012-06-15 22:38:18 +0000
3449@@ -5,24 +5,32 @@
3450
3451 {% block content %}
3452
3453-<article class="main-content">
3454+<div class="row">
3455+ <section class="span-12">
3456 <h2>{% trans "Using the LoCo Team Portal" %}</h2>
3457 <p>{% trans "The LoCo Team Portal is an excellent resource for LoCo Teams to use when planning events. The LoCo Team Portal allows users to set up events and venues for their LoCo Team, and then allow users to register their attendance to the event. This makes planning and tracking much easier for users." %}</p>
3458-</article>
3459+ </seclection>
3460+</div>
3461
3462-<article class="main-content">
3463+<div class="row">
3464+ <section class="span-12">
3465 <h3>{% trans "Teams" %}</h3>
3466 <p>{% trans "All LoCo Teams registered in Launchpad are a part of the LoCo Team Portal. Team members can create events and venues for their LoCo Team." %}</p>
3467-</article>
3468+ </seclection>
3469+</div>
3470
3471-<article class="main-content">
3472+<div class="row">
3473+ <section class="span-12">
3474 <h3>{% trans "Events" %}</h3>
3475 <p>{% trans "A LoCo Team member can create an event, and then other members can register their attendance to the event and make comments to the event." %}</p>
3476-</article>
3477+ </seclection>
3478+</div>
3479
3480-<article class="main-content">
3481+<div class="row">
3482+ <section class="span-12">
3483 <h3>{% trans "Venues" %}</h3>
3484 <p>{% trans "Creating a venue in the LoCo Team Portal will provide other users with information about where an event is being held, and any other information that the users might need to know about the events location." %}</p>
3485-</article>
3486+ </seclection>
3487+</div>
3488
3489 {% endblock %}
3490
3491=== modified file 'loco_directory/templates/venues/venue_detail.html'
3492--- loco_directory/templates/venues/venue_detail.html 2011-10-05 00:50:53 +0000
3493+++ loco_directory/templates/venues/venue_detail.html 2012-06-15 22:38:18 +0000
3494@@ -8,13 +8,15 @@
3495 <script type="text/javascript" src="http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerclusterer/1.0/src/markerclusterer_packed.js"></script>
3496 <script type="text/javascript" src="{{ MEDIA_URL }}js/jquery-ubuntu-maps.js"></script>
3497 {% endblock %}
3498+<div class="row">
3499+<section class="span-6">
3500
3501 {% block sub_nav_links %}
3502-<a class="sub-nav-item" href="{% url venue-list %}" >{% trans "Back to Venues List" %}</a>
3503+<li><a class="sub-nav-item" href="{% url venue-list %}" >{% trans "Back to Venues List" %}</a></li>
3504 {% if venue_object.country %}
3505-<a class="sub-nav-item" href="{% url venue-update venue_object.country.slug venue_object.id %}">{% trans "Edit Venue Details" %}</a>
3506+<li><a class="sub-nav-item" href="{% url venue-update venue_object.country.slug venue_object.id %}">{% trans "Edit Venue Details" %}</a></li>
3507 {% else %}
3508-<a class="sub-nav-item" href="{% url venue-update 'no_country' venue_object.id %}">{% trans "Edit Venue Details" %}</a>
3509+<li><a class="sub-nav-item" href="{% url venue-update 'no_country' venue_object.id %}">{% trans "Edit Venue Details" %}</a></li>
3510 {% endif %}
3511 {% endblock %}
3512
3513
3514=== modified file 'loco_directory/templates/venues/venue_detail.inc.html'
3515--- loco_directory/templates/venues/venue_detail.inc.html 2011-02-17 16:23:06 +0000
3516+++ loco_directory/templates/venues/venue_detail.inc.html 2012-06-15 22:38:18 +0000
3517@@ -1,11 +1,12 @@
3518 {% load i18n %}
3519-<article class="minor-content">
3520+<div class="row">
3521+<section class="span-6">
3522 <h2>{{venue_object.name}}</h2>
3523 <p>{% include "venues/venue_detail_basic.inc.html" %}</p>
3524-</article>
3525+</section>
3526
3527 {% if venue_object.longitude and venue_object.latitude %}
3528-<article class="minor-content alone venue-map" id="venue-map" class="">
3529+<section class="span-6 last alone venue-map" id="venue-map">
3530 </article>
3531 <script>
3532 $(function(){
3533@@ -15,5 +16,6 @@
3534 });
3535 });
3536 </script>
3537+</setion>
3538+</div>
3539 {% endif %}
3540-
3541
3542=== modified file 'loco_directory/templates/venues/venue_list.html'
3543--- loco_directory/templates/venues/venue_list.html 2011-11-12 23:19:28 +0000
3544+++ loco_directory/templates/venues/venue_list.html 2012-06-15 22:38:18 +0000
3545@@ -4,12 +4,12 @@
3546 {% block page_name %}{% trans "Ubuntu LoCo Event Venues" %}{% endblock %}
3547
3548 {% block sub_nav_links %}
3549- <a class="sub-nav-item" href="{% url venue-new %}">{% trans "Add New Venue" %}</a>
3550+ <li><a class="sub-nav-item" href="{% url venue-new %}">{% trans "Add New Venue" %}</a></li>
3551 {% endblock %}
3552
3553 {% block content %}
3554-<article id="main-content" class="main-content">
3555-
3556+<div class="row">
3557+<section class="span-12">
3558 <h2>{% trans "Ubuntu LoCo Event Venues" %}</h2>
3559
3560 {% if continent_list or venues_with_country or venues_without_country %}
3561@@ -63,5 +63,6 @@
3562 {% else %}
3563 <p>{% trans "There are currently no LoCo Venues :(" %}</p>
3564 {% endif %}
3565-</article>
3566+</section>
3567+</div>
3568 {% endblock %}
3569
3570=== modified file 'loco_directory/templates/venues/venue_update.html'
3571--- loco_directory/templates/venues/venue_update.html 2011-10-05 00:50:53 +0000
3572+++ loco_directory/templates/venues/venue_update.html 2012-06-15 22:38:18 +0000
3573@@ -23,16 +23,18 @@
3574 {% endblock %}
3575
3576 {% block content %}
3577-<article class="minor-content">
3578+<div class="row">
3579+<section class="span-9">
3580 <form action="." method="post" style="width:auto;">
3581 <fieldset>
3582- <legend>{% if venue_object %}{% trans "Update Venue" %}{% else %}{% trans "New Venue" %}{% endif %}</legend>
3583+ <h3>{% if venue_object %}{% trans "Update Venue" %}{% else %}{% trans "New Venue" %}{% endif %}</h3>
3584 {{ form.as_template }}
3585 </fieldset>
3586 {% if is_popup %}<input type="hidden" name="_popup" value="1">{% endif %}
3587 <input type="submit" name="submit" value="Submit" class="submit-button" />
3588 </form>
3589-</article>
3590+</section>
3591+</div>
3592
3593 <section class="minor-content alone venue-map" id="venue-map-selector" title="{% trans "Select venue position" %}">&nbsp;</section>
3594

Subscribers

People subscribed via source and target branches