UI: Conference website web-assets v2 upgrade #103970
@ -475,6 +475,7 @@ body.is-scrolled
|
||||
|
||||
.event-name
|
||||
line-height: var(--spacer-4)
|
||||
text-wrap: balance
|
||||
|
||||
.event-details
|
||||
display: flex
|
||||
|
@ -0,0 +1,7 @@
|
||||
style.
|
||||
:root {
|
||||
{% for l in edition.locations.all %}
|
||||
--location-hue-{{ l.slug }}: {{ l.color_to_hsv.0 }};
|
||||
{% endfor %}
|
||||
}
|
||||
|
@ -0,0 +1,44 @@
|
||||
.d-flex
|
||||
div
|
||||
small.text-muted.d-block Status
|
||||
span.badge.badge-primary.badge-sm.d-inline-block(class="status-{{ object.status }}")
|
||||
| {% if object.status == 'rejected' %}NOT ACCEPTED{% else %}{{ object.get_status_display|upper }}{% endif %}
|
||||
|
||||
| {% if object.status == 'accepted' %}
|
||||
div.ml-4
|
||||
small.text-muted.d-block Location
|
||||
span(style="color: hsl(var(--location-hue-{{ object.location.slug }}), 50%, 50%);")
|
||||
| {% if object.location.slug %}
|
||||
| {{ object.location.slug | title }}
|
||||
| {% else %}
|
||||
| No Location
|
||||
| {% endif %}
|
||||
div.ml-4
|
||||
small.text-muted.d-block Category
|
||||
span
|
||||
| {% if object.category %}
|
||||
| {{ object.category | title }}
|
||||
| {% else %}
|
||||
| Uncategorized
|
||||
| {% endif %}
|
||||
div.ml-4
|
||||
small.text-muted.d-block Duration
|
||||
span
|
||||
| {% if object.duration_minutes %}
|
||||
| {{ object.duration_minutes }}m
|
||||
| {% else %}
|
||||
| No Duration
|
||||
| {% endif %}
|
||||
|
||||
| {% if edition.schedule_status == 'proposed' or edition.schedule_status == 'final' %}
|
||||
div.ml-4
|
||||
small.text-muted.d-block Schedule {% if edition.schedule_status == 'proposed' %}(not final){% endif %}
|
||||
span
|
||||
| {% if object.day and object.day.date and object.time %}
|
||||
a(href="{% url 'schedule' edition_path=edition.path %}#event-{{ object.id }}")
|
||||
| {{ object.day.date | date:'l dS M' }} {{ object.time | time:'H:i' }}
|
||||
| {% else %}
|
||||
span Unscheduled
|
||||
| {% endif %}
|
||||
| {% endif %}
|
||||
| {% endif %}
|
@ -3,14 +3,7 @@
|
||||
| {% load conference_main %}
|
||||
|
||||
| {% block content %}
|
||||
style.
|
||||
:root {
|
||||
{% for l in edition.locations.all %}
|
||||
--location-hue-{{ l.slug }}: {{ l.color_to_hsv.0 }};
|
||||
{% endfor %}
|
||||
|
||||
--locations-count: calc({{ edition.locations.all|length }} - 2)
|
||||
}
|
||||
| {% include "conference_main/components/event_style.pug" %}
|
||||
|
||||
.panel-container
|
||||
section.panel-events-list.panel-ajax-refresh(
|
||||
|
@ -3,12 +3,7 @@
|
||||
| {% load conference_main %}
|
||||
|
||||
| {% block content %}
|
||||
style.
|
||||
:root {
|
||||
{% for l in edition.locations.all %}
|
||||
--location-hue-{{ l.slug }}: {{ l.color_to_hsv.0 }};
|
||||
{% endfor %}
|
||||
}
|
||||
| {% include "conference_main/components/event_style.pug" %}
|
||||
|
||||
.panel-container.panel-location
|
||||
ul.board-events(
|
||||
|
@ -30,36 +30,23 @@ meta(name='twitter:image', content='{{request.scheme}}://{{request.META.HTTP_HOS
|
||||
| {% block content %}
|
||||
| {% is_attending_edition user object.edition as is_attending %}
|
||||
.container.event-detail.mt-3
|
||||
style.
|
||||
:root {
|
||||
{% for l in edition.locations.all %}
|
||||
--location-hue-{{ l.slug }}: {{ l.color_to_hsv.0 }};
|
||||
{% endfor %}
|
||||
}
|
||||
| {% include "conference_main/components/event_style.pug" %}
|
||||
|
||||
.row
|
||||
.col
|
||||
.box.mb-3.p-3
|
||||
| {% if permissions.can_change %}
|
||||
.mb-3.row
|
||||
.col-sm-6
|
||||
.d-flex
|
||||
div
|
||||
small.text-muted.d-block Submitted on
|
||||
span(title="{{ object.created_at | date:'D d M, Y @ H:i' }}")
|
||||
| {{ object.created_at | date:'l d M, Y' }}
|
||||
div.ml-4
|
||||
small.text-muted.d-block Status
|
||||
span.badge.badge-primary(class="status-{{ object.status }}")
|
||||
| {% if object.status == 'rejected' %}NOT ACCEPTED{% else %}{{ object.status|upper|replace:'_| ' }}{% endif %}
|
||||
|
||||
.col-sm-6
|
||||
.col-sm-8
|
||||
| {% include "conference_main/components/review_header_details.pug" %}
|
||||
.col-sm-4
|
||||
.d-flex
|
||||
.ml-auto
|
||||
.btn-row.justify-content-end
|
||||
a.btn(
|
||||
href="{% url 'presentation_update' edition_path=object.edition.path pk=object.pk %}")
|
||||
i.i-edit
|
||||
span Edit Presentation
|
||||
span Edit
|
||||
a.btn(
|
||||
href="{% url 'presentation_review' edition_path=object.edition.path pk=object.pk %}")
|
||||
i.i-comment
|
||||
@ -69,7 +56,7 @@ meta(name='twitter:image', content='{{request.scheme}}://{{request.META.HTTP_HOS
|
||||
href="{% url 'admin:conference_main_event_change' object.pk %}")
|
||||
| Admin
|
||||
| {% endif %}
|
||||
| {% endif %}
|
||||
| {% endif %}
|
||||
|
||||
| {% if object.recording %}
|
||||
.video-container
|
||||
@ -139,16 +126,13 @@ meta(name='twitter:image', content='{{request.scheme}}://{{request.META.HTTP_HOS
|
||||
| {% if speaker.bio %}
|
||||
.attendee-bio
|
||||
| {{ speaker.bio|truncatechars:400|linebreaks|urlizetrunc:80 }}
|
||||
|
||||
| {% if speaker.bio|length > 400 %}
|
||||
a(href="{% url 'profile_detail' pk=speaker.pk %}") read more.
|
||||
a.btn.btn-sm(href="{% url 'profile_detail' pk=speaker.pk %}")
|
||||
| Speaker Profile
|
||||
| {% endif %}
|
||||
| {% endif %}
|
||||
|
||||
| {{ speaker.events_per_edition }}
|
||||
| {% endfor %}
|
||||
|
||||
| {% if permissions.can_change %}
|
||||
.alert.alert-info
|
||||
| Messages have been moved to #[a(href="{% url 'presentation_review' edition_path=object.edition.path pk=object.pk %}") #[u the review page]].
|
||||
| {% endif %}
|
||||
| {% endblock content %}
|
||||
|
@ -30,27 +30,21 @@ meta(name='twitter:image', content='{{request.scheme}}://{{request.META.HTTP_HOS
|
||||
| {% block header %}{% endblock %}
|
||||
|
||||
| {% block content %}
|
||||
| {% include "conference_main/components/event_style.pug" %}
|
||||
|
||||
| {% is_attending_edition user object.edition as is_attending %}
|
||||
| {% if permissions.can_change %}
|
||||
.event-detail-header.review
|
||||
.row
|
||||
.col-md-8.col-lg-6
|
||||
.d-flex
|
||||
div
|
||||
small.text-muted.d-block Submitted on
|
||||
span(title="{{ object.created_at | date:'D d M, Y @ H:i' }}")
|
||||
| {{ object.created_at | date:'l d M, Y' }}
|
||||
div.ml-4
|
||||
small.text-muted.d-block Status
|
||||
span.badge.badge-primary(class="status-{{ object.status }}")
|
||||
| {% if object.status == 'rejected' %}NOT ACCEPTED{% else %}{{ object.get_status_display|upper }}{% endif %}
|
||||
.col-md-8.col-lg-8
|
||||
| {% include "conference_main/components/review_header_details.pug" %}
|
||||
|
||||
.col-md-4.col-lg-6.d-flex.flex-column.justify-content-center
|
||||
.col-md-4.col-lg-4.d-flex.flex-column.justify-content-center
|
||||
.btn-row.justify-content-end
|
||||
a.btn(
|
||||
href="{% url 'presentation_update' edition_path=object.edition.path pk=object.pk %}")
|
||||
i.i-edit
|
||||
span Edit Presentation
|
||||
span Edit
|
||||
a.btn(
|
||||
href="{% url 'presentation_detail' edition_path=object.edition.path pk=object.pk %}")
|
||||
i.i-eye
|
||||
@ -73,7 +67,7 @@ meta(name='twitter:image', content='{{request.scheme}}://{{request.META.HTTP_HOS
|
||||
| {{ object.recording | oembed }}
|
||||
| {% endif %}
|
||||
|
||||
.row.mb-3
|
||||
.row
|
||||
| {% if object.picture and not object.recording %}
|
||||
.col-md-3
|
||||
| {% thumbnail object.picture "480x270" crop="50%" format="JPEG" as picture %}
|
||||
@ -82,48 +76,30 @@ meta(name='twitter:image', content='{{request.scheme}}://{{request.META.HTTP_HOS
|
||||
| {% endthumbnail %}
|
||||
| {% endif %}
|
||||
|
||||
div(class="col-md-{% if object.picture and not object.recording %}9{% else %}12{% endif %}")
|
||||
| {% if object.day and object.time %}
|
||||
.event-header.mb-3
|
||||
ul.event-description
|
||||
| {% if object.location.slug %}
|
||||
li.event-location
|
||||
| {{ object.location.slug | upper }}
|
||||
| {% endif %}
|
||||
|
||||
| {% if object.category %}
|
||||
li.event-category
|
||||
| {{ object.category | upper }}
|
||||
| {% endif %}
|
||||
|
||||
| {% if object.duration_minutes %}
|
||||
li.event-duration
|
||||
| {{ object.duration_minutes }} min
|
||||
| {% endif %}
|
||||
|
||||
| {% if object.day.date and object.time %}
|
||||
li.event-date
|
||||
a(href="{% url 'schedule' edition_path=edition.path %}#event-{{ object.id }}")
|
||||
| {{ object.day.date | date:'l dS M' }} {{ object.time | time:'H:i' }}
|
||||
| {% endif %}
|
||||
|
||||
li.divider
|
||||
|
||||
| {% include "conference_main/components/event_buttons.pug" with event=object %}
|
||||
| {% endif %}
|
||||
div(class="col-md-{% if object.picture and not object.recording %}9{% else %}12{% endif %}")
|
||||
|
||||
h3.mb-3 {{ object.name }}
|
||||
|
||||
| {% if object.description %}
|
||||
div {{ object.description | urlizetrunc:40 | linebreaks }}
|
||||
| {% endif %}
|
||||
| {% if object.description %}
|
||||
div {{ object.description | urlizetrunc:40 | linebreaks }}
|
||||
| {% endif %}
|
||||
|
||||
.event-tags
|
||||
| {% if event.tags.all %}
|
||||
| {% for tag in event.tags.all %}
|
||||
.badge.badge-secondary.badge-sm(title="{{ tag.name }}")
|
||||
| {{ tag.name }}
|
||||
| {% endfor %}
|
||||
| {% else %}
|
||||
small No tags set yet.
|
||||
| {% endif %}
|
||||
|
||||
| {% if object.proposal %}
|
||||
.row.mb-4
|
||||
.col-md-12
|
||||
//- Original Proposal.
|
||||
details
|
||||
summary Original Proposal
|
||||
summary Original Proposal - {{ object.created_at | date:'D d M, Y @ H:i' }}
|
||||
div {{ object.proposal | urlizetrunc:40 | linebreaks }}
|
||||
| {% endif %}
|
||||
|
||||
@ -161,14 +137,16 @@ meta(name='twitter:image', content='{{request.scheme}}://{{request.META.HTTP_HOS
|
||||
.col-md-12.mt-3
|
||||
.attendee-bio
|
||||
| {{ speaker.bio|truncatechars:400|linebreaks|urlizetrunc:80 }}
|
||||
|
||||
| {% if speaker.bio|length > 400 %}
|
||||
a(href="{% url 'profile_detail' pk=speaker.pk %}") read more.
|
||||
a.btn.btn-sm(href="{% url 'profile_detail' pk=speaker.pk %}")
|
||||
| Speaker Profile
|
||||
| {% endif %}
|
||||
| {% endif %}
|
||||
|
||||
| {% if request.user.is_superuser %}
|
||||
| {% if speaker.other_events %}
|
||||
h5.pt-2.text-muted SESSIONS
|
||||
h5.pt-4.mb-0.text-muted SESSIONS
|
||||
|
||||
table.mb-2
|
||||
tbody
|
||||
|
@ -22,12 +22,7 @@ a.alert.alert-fluid.alert-info(
|
||||
| This is a proposed version of the schedule. The final version will be available 2 weeks before the event.
|
||||
| {% endif %}
|
||||
|
||||
style.
|
||||
:root {
|
||||
{% for l in edition.locations.all %}
|
||||
--location-hue-{{ l.slug }}: {{ l.color_to_hsv.0 }};
|
||||
{% endfor %}
|
||||
}
|
||||
| {% include "conference_main/components/event_style.pug" %}
|
||||
|
||||
.schedule-container.horizontal
|
||||
.schedule-filters-container
|
||||
|
@ -22,12 +22,7 @@ a.alert.alert-fluid.alert-info(
|
||||
| This is a proposed version of the schedule. The final version will be available 2 weeks before the event.
|
||||
| {% endif %}
|
||||
|
||||
style.
|
||||
:root {
|
||||
{% for l in edition.locations.all %}
|
||||
--location-hue-{{ l.slug }}: {{ l.color_to_hsv.0 }};
|
||||
{% endfor %}
|
||||
}
|
||||
| {% include "conference_main/components/event_style.pug" %}
|
||||
|
||||
.schedule-filters-container
|
||||
.row
|
||||
|
@ -6,9 +6,15 @@
|
||||
.mb-3
|
||||
h2.d-inline Edit Presentation
|
||||
|
||||
a.btn.float-right.d-inline(href="{% url 'presentation_detail' edition_path=object.edition.path pk=object.pk %}")
|
||||
i.i-eye
|
||||
span View Presentation
|
||||
.btn-row.float-right
|
||||
| {% if request.user.is_staff %}
|
||||
a.btn(href="{% url 'presentation_review' edition_path=object.edition.path pk=object.pk %}")
|
||||
i.i-comment
|
||||
span Review
|
||||
| {% endif %}
|
||||
a.btn(href="{% url 'presentation_detail' edition_path=object.edition.path pk=object.pk %}")
|
||||
i.i-eye
|
||||
span View
|
||||
|
||||
form(action="{% url 'presentation_update' edition_path=object.edition.path pk=object.pk %}", method="post", enctype="multipart/form-data")
|
||||
.form-group
|
||||
|
Loading…
Reference in New Issue
Block a user