Fix double base2.css include in meeting landscape edit template and fix some HTML syntax errors
- Legacy-Id: 6816
This commit is contained in:
parent
415768bb54
commit
992bf0efea
|
@ -20,7 +20,6 @@
|
|||
{% load agenda_custom_tags %}
|
||||
{% block pagehead %}
|
||||
<link rel='stylesheet' type='text/css' href='/css/jquery-ui-themes/jquery-ui-1.8.11.custom.css' />
|
||||
<link rel="stylesheet" type="text/css" href="/css/base2.css"></link>
|
||||
<link rel='stylesheet' type='text/css' href='/css/agenda.css' />
|
||||
{% endblock pagehead %}
|
||||
|
||||
|
@ -121,12 +120,8 @@ area_directors["{{ad.area}}"].push(find_person_by_href("{{ad.defurl}}"));
|
|||
{% block content %}
|
||||
|
||||
<div id="read_only">
|
||||
<p>
|
||||
You do not have write permission to agenda: {{schedule.name}}
|
||||
</p>
|
||||
</p>
|
||||
Please save this agenda to your account first.
|
||||
</p>
|
||||
<p>You do not have write permission to agenda: {{schedule.name}}</p>
|
||||
<p>Please save this agenda to your account first.</p>
|
||||
</div>
|
||||
|
||||
<div class="wrapper custom_text_stuff">
|
||||
|
@ -197,6 +192,7 @@ Please save this agenda to your account first.
|
|||
</div>
|
||||
|
||||
<table id="meetings" class="ietf-navbar" style="width:100%">
|
||||
<tr>
|
||||
<th class="schedule_title"><div id="spinner"><!-- spinney goes here --></div></th>
|
||||
{% for day in time_slices %}
|
||||
<th colspan="{{date_slices|colWidth:day}}" id="{{day|date:'Y-m-d'}}-btn" class=" day_{{day}} agenda_slot_title agenda_slot_unavailable">
|
||||
|
@ -210,16 +206,15 @@ Please save this agenda to your account first.
|
|||
</div>
|
||||
</th>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
<tr>
|
||||
<th class="th_column"><button id="show_all_button" class="styled_button">show all</button></th>
|
||||
{% for day in time_slices %}
|
||||
{% for slot in date_slices|lookup:day %}
|
||||
<th class="day_{{day}}-{{slot.0|date:'Hi'}} day_{{day}} room_title ">{{slot.0|date:'Hi'}}-{{slot.1|date:'Hi'}} </th>
|
||||
{% endfor %}
|
||||
|
||||
{% endfor %}
|
||||
<th class="day_{{day}} spacer {{day|date:'Y-m-d'}}-spacer">
|
||||
</div></th>
|
||||
|
||||
<th class="day_{{day}} spacer {{day|date:'Y-m-d'}}-spacer"></th>
|
||||
{% endfor %}
|
||||
|
||||
|
||||
|
@ -325,8 +320,6 @@ Please save this agenda to your account first.
|
|||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- some boxes for dialogues -->
|
||||
<div id="dialog-confirm-two" title="" style="display:none">
|
||||
<p>
|
||||
|
|
Loading…
Reference in a new issue