From ba1df47d695b9349f876105f1887cbcba33f7d1a 2014-12-18 14:19:01 From: Patrick Altman Date: 2014-12-18 14:19:01 Subject: [PATCH] Remove templates These have all been moved to the starter project, pinax-project-symposion. The reasoning behind this is they are very specific to the theme (pinax-theme-bootstrap) that the project uses and not really all that reusable when packaged with this app. --- diff --git a/requirements/base.txt b/requirements/base.txt index f435a716a464e9aa381a9bf25f610fc1f313be28..8cd92478fa19c8992e15f229abcd7f9c2d8b8362 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,6 +1,5 @@ Django>=1.7.1 django-appconf==0.6 -django-forms-bootstrap>=2.0.3.post2 django-markitup==2.2.2 django-model-utils==2.2 django-reversion==1.8.5 diff --git a/symposion/templates/boxes/box.html b/symposion/templates/boxes/box.html deleted file mode 100644 index f4a335388cc7c2e6c7522cbb9384d58e6f3098da..0000000000000000000000000000000000000000 --- a/symposion/templates/boxes/box.html +++ /dev/null @@ -1,32 +0,0 @@ -{% load markitup_tags %} -{% load i18n %} - -{% if form %} - -{% endif %} - -
- {% if form %} - Edit this content - {% endif %} - {{ box.content|safe }} -
diff --git a/symposion/templates/cms/file_create.html b/symposion/templates/cms/file_create.html deleted file mode 100644 index 07f449c915c1e27fe71071a82ca03ea8d5dcacd7..0000000000000000000000000000000000000000 --- a/symposion/templates/cms/file_create.html +++ /dev/null @@ -1,20 +0,0 @@ -{% extends "site_base.html" %} - -{% load bootstrap_tags %} - -{% block head_title %}Upload File{% endblock %} - -{% block body_outer %} -
-
-

Upload File

-
- {% csrf_token %} - {{ form|as_bootstrap }} -
- -
-
-
-
-{% endblock %} diff --git a/symposion/templates/cms/file_index.html b/symposion/templates/cms/file_index.html deleted file mode 100644 index e9f367f0aa840943a3f1a497aa7906d096b9d66e..0000000000000000000000000000000000000000 --- a/symposion/templates/cms/file_index.html +++ /dev/null @@ -1,30 +0,0 @@ -{% extends "site_base.html" %} - -{% block head_title %}Uploaded Files{% endblock %} - -{% block body_outer %} -
-
-

Files

- - {% for file in files %} -
-
- {% csrf_token %} - -
-

{{ file.file }}

- Uploaded {{ file.created|date:"N j, Y" }} -
- {% empty %} -

No uploaded files.

- {% endfor %} -
- - - Add File - -
-
-
-{% endblock %} diff --git a/symposion/templates/cms/page_detail.html b/symposion/templates/cms/page_detail.html deleted file mode 100644 index 6f35395b7dd9e620a7625de96295db6dc1b831f0..0000000000000000000000000000000000000000 --- a/symposion/templates/cms/page_detail.html +++ /dev/null @@ -1,27 +0,0 @@ -{% extends "site_base.html" %} - -{% load url from future %} - - -{% load sitetree %} -{% load i18n %} - -{% block body_class %}cms-page{% endblock %} - -{% block head_title %}{{ page.title }}{% endblock %} - -{% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %} - -{% block body %} - {% if editable %} -
- Edit this page -
- {% endif %} -

{{ page.title }}

- -
- {{ page.body }} -
- -{% endblock %} \ No newline at end of file diff --git a/symposion/templates/cms/page_edit.html b/symposion/templates/cms/page_edit.html deleted file mode 100644 index e361ecdfbd9d4a35567a03eeb81af9a58077d21c..0000000000000000000000000000000000000000 --- a/symposion/templates/cms/page_edit.html +++ /dev/null @@ -1,22 +0,0 @@ -{% extends "site_base.html" %} - -{% load sitetree %} -{% load i18n %} -{% load bootstrap_tags %} - -{% block body_class %}cms-page{% endblock %} - -{% block head_title %}Create Page{% endblock %} - -{% block page_title %}{% trans "Edit page at:" %} {{ path }}{% endblock %} -{% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %} - -{% block body %} -
- {% csrf_token %} - {{ form|as_bootstrap }} -
- -
-
-{% endblock %} \ No newline at end of file diff --git a/symposion/templates/conference/user_list.html b/symposion/templates/conference/user_list.html deleted file mode 100644 index 9886fde1002b1fad3a2de315bc37f4561b1c0adc..0000000000000000000000000000000000000000 --- a/symposion/templates/conference/user_list.html +++ /dev/null @@ -1,106 +0,0 @@ -{% extends "site_base.html" %} - -{% load i18n %} -{% load sitetree %} - -{% block head_title %}User List{% endblock %} - -{% block extra_style %} - -{% endblock %} - -{% block body_outer %} -
-
-

User List

- - - - - - - - - {% for user in users %} - - - - - - {% endfor %} - -
{% trans "Email" %}{% trans "Name" %}{% trans "Speaker Profile?" %}
{{ user.email }}{{ user.get_full_name }} - {% if user.speaker_profile %} - {{ user.speaker_profile }} - {% else %} - create - {% endif %} -
-
-
-{% endblock %} - -{% block extra_script %} - - - - -{% endblock %} diff --git a/symposion/templates/dashboard.html b/symposion/templates/dashboard.html deleted file mode 100644 index f4ef8775bf88a242880036eb8f3d50144a0aa91e..0000000000000000000000000000000000000000 --- a/symposion/templates/dashboard.html +++ /dev/null @@ -1,221 +0,0 @@ -{% extends "site_base.html" %} - -{% load i18n %} -{% load proposal_tags %} -{% load review_tags %} -{% load teams_tags %} - -{% block head_title %}Dashboard{% endblock %} - -{% block body_class %}auth{% endblock %} - -{% block body %} -
-
- -

{% trans "Speaking" %}

-
- {% if not user.speaker_profile %} - - Create a speaker profile - - {% else %} - - Edit your speaker profile - - - Submit a new proposal - - {% endif %} -
-
- -
- {% if not user.speaker_profile %} -

To submit a proposal, you must first create a speaker profile.

- {% else %} -

Your Proposals

- {% if user.speaker_profile.proposals.exists %} - - - - - - - - {% for proposal in user.speaker_profile.proposals.all %} - {% include "proposals/_proposal_row.html" %} - {% endfor %} -
TitleSession typeStatusActions
- {% else %} -

No proposals submitted yet.

- {% endif %} - - {% associated_proposals as associated_proposals %} - {% if associated_proposals %} -

Proposals you have joined as an additional speaker

- - - - - - - - {% for proposal in associated_proposals %} - {% include "proposals/_proposal_row.html" %} - {% endfor %} -
TitleSession typeStatusActions
- {% endif %} - - {% pending_proposals as pending_proposals %} - {% if pending_proposals %} -

Proposals you have been invited to join

- - - - - - - - {% for proposal in pending_proposals %} - {% include "proposals/_pending_proposal_row.html" %} - {% endfor %} -
TitleSession typeStatusActions
- {% endif %} - {% endif %} -
-
- -
-
- -

{% trans "Sponsorship" %}

-
- {% if not user.sponsorships.exists %} - - Apply to be a sponsor - - {% endif %} -
-
- -
- {% if not user.sponsorships.exists %} -

If you or your organization would be interested in sponsorship opportunities, use our online form to apply to be a sponsor. - {% else %} -

Your Sponsorship

-
    - {% for sponsorship in user.sponsorships.all %} -
  • - {{ sponsorship.name }} - ({{ sponsorship.level }}) - {% if not sponsorship.active %} - awaiting approval - {% endif %} -
  • - {% endfor %} -
- {% endif %} - {% if user.is_staff %} -

- As staff, you can directly add a sponsor if the organization isn't - applying themselves. -

- {% endif %} -
-
- - {% if review_sections %} -
-
- -

{% trans "Reviews" %}

-
- -
-

Reviews by Section

- - - - {% comment %} -

My Assignments

- - - - - - - - - - - - - - - -
Proposal TitleScore
Title Three-1
Title Four+2
- {% endcomment %} - -
-
- {% endif %} - - {% available_teams as available_teams %} - {% if user.memberships.exists or available_teams %} -
-
- -

{% trans "Teams" %}

-
- -
- {% if user.memberships.exists %} -

Your Teams

- - {% for membership in user.memberships.all %} - - - - - - {% endfor %} -
- {{ membership.team.name }} - {% if membership.team.description %}
{{ membership.team.description }}{% endif %} -
- {{ membership.get_state_display }} - - {% if membership.state == "manager" or user.is_staff %} - {% if membership.team.applicants %}{{ membership.team.applicants.count }} applicant{{ membership.team.applicants.count|pluralize }}{% endif %} - {% endif %} -
- {% endif %} - {% if available_teams %} -

Available Teams

- - {% for team in available_teams %} - - - - - - {% endfor %} -
- {{ team }} - {% if team.description %}
{{ team.description }}{% endif %} -
- {{ team.get_access_display }} -
- {% endif %} -
-
- {% endif %} -{% endblock %} diff --git a/symposion/templates/emails/proposal_new_message/message.html b/symposion/templates/emails/proposal_new_message/message.html deleted file mode 100644 index 42c55ac2b24fb1546f073e6545ee747317c0fb8b..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/proposal_new_message/message.html +++ /dev/null @@ -1,11 +0,0 @@ -{% load account_tags %} -

- {% user_display message.user %} has added a message on {{ proposal.title }}. -

-
- {{ message.message|safe }} -
-

- {% if reviewer %}{% url "review_detail" proposal.pk as detail_url %}{% else %}{% url "proposal_detail" proposal.pk as detail_url %}{% endif %} - Respond online at http://{{ current_site }}{{ detail_url }}#proposal-feedback -

diff --git a/symposion/templates/emails/proposal_new_message/subject.txt b/symposion/templates/emails/proposal_new_message/subject.txt deleted file mode 100644 index 4d5d805d5654851f4eafdce90bdda608afe35bf2..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/proposal_new_message/subject.txt +++ /dev/null @@ -1 +0,0 @@ -{% load account_tags %}New message on "{{ proposal.title }}" from {% user_display message.user %} \ No newline at end of file diff --git a/symposion/templates/emails/proposal_updated/message.html b/symposion/templates/emails/proposal_updated/message.html deleted file mode 100644 index e20ed4f0d294d262c203bff9a6b3f122c7d3519a..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/proposal_updated/message.html +++ /dev/null @@ -1,8 +0,0 @@ -{% load account_tags %} -

- {% user_display user %} has made changes to {{ proposal.title }} which you have previously reviewed or commented on. -

-

- {% url "review_detail" proposal.pk as detail_url %} - View the latest version of the proposal online at http://{{ current_site }}{{ detail_url }} -

diff --git a/symposion/templates/emails/proposal_updated/subject.txt b/symposion/templates/emails/proposal_updated/subject.txt deleted file mode 100644 index ba9117c13375c18fc813fb1f3adaaf72e718e8df..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/proposal_updated/subject.txt +++ /dev/null @@ -1 +0,0 @@ -{% load account_tags %}"{{ proposal.title }}" has been updated by {% user_display user %} \ No newline at end of file diff --git a/symposion/templates/emails/speaker_addition/message.html b/symposion/templates/emails/speaker_addition/message.html deleted file mode 100644 index 1d01ab7e90ba898b20807be009ec6e29c10a504f..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/speaker_addition/message.html +++ /dev/null @@ -1,6 +0,0 @@ -

{{ proposal.speaker.name }} attached you as an additional speaker to a - talk proposal for {{ current_site.name }} entitled "{{ proposal.title }}".

- -

For more details, visit the {{ current_site.name }} speaker dashboard: - http://{{ current_site }}{% url "dashboard" %} -

diff --git a/symposion/templates/emails/speaker_addition/subject.txt b/symposion/templates/emails/speaker_addition/subject.txt deleted file mode 100644 index 778d07e92dc75d01d1748a640d370eb33eb133bc..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/speaker_addition/subject.txt +++ /dev/null @@ -1 +0,0 @@ -{{ proposal.speaker.name }} has invited you to join as a speaker on {{ proposal.title }} diff --git a/symposion/templates/emails/speaker_invite/message.html b/symposion/templates/emails/speaker_invite/message.html deleted file mode 100644 index 57cea710eecd18d8636b0b87eb55aee26be4760b..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/speaker_invite/message.html +++ /dev/null @@ -1,10 +0,0 @@ -

{{ proposal.speaker.name }} attached you as an additional speaker to a - talk proposal for {{ current_site.name }} entitled "{{ proposal.title }}".

- -

Go to

- -

http://{{ current_site }}{% url "speaker_create_token" token %}

- -

to confirm.

- -

If you don't have account on the website, you will be asked to create one.

diff --git a/symposion/templates/emails/speaker_invite/subject.txt b/symposion/templates/emails/speaker_invite/subject.txt deleted file mode 100644 index 778d07e92dc75d01d1748a640d370eb33eb133bc..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/speaker_invite/subject.txt +++ /dev/null @@ -1 +0,0 @@ -{{ proposal.speaker.name }} has invited you to join as a speaker on {{ proposal.title }} diff --git a/symposion/templates/emails/speaker_no_profile/message.html b/symposion/templates/emails/speaker_no_profile/message.html deleted file mode 100644 index d77693c14be3325fe188e0e965c7e3324076da00..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/speaker_no_profile/message.html +++ /dev/null @@ -1,9 +0,0 @@ -{% load url from future %} -

{{ proposal.speaker.name }} attached you as an additional speaker to a - talk proposal for {{ current_site.name }} entitled "{{ proposal.title }}".

- -

Go to

- -

http://{{ current_site }}{% url 'speaker_create_token' token %}

- -

to confirm and fill out your speaker profile.

diff --git a/symposion/templates/emails/speaker_no_profile/subject.txt b/symposion/templates/emails/speaker_no_profile/subject.txt deleted file mode 100644 index 778d07e92dc75d01d1748a640d370eb33eb133bc..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/speaker_no_profile/subject.txt +++ /dev/null @@ -1 +0,0 @@ -{{ proposal.speaker.name }} has invited you to join as a speaker on {{ proposal.title }} diff --git a/symposion/templates/emails/sponsor_signup/message.html b/symposion/templates/emails/sponsor_signup/message.html deleted file mode 100644 index 8d982a64f073538da95fa8851bee452b623ff47a..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/sponsor_signup/message.html +++ /dev/null @@ -1,9 +0,0 @@ -

{{ sponsor.name }} has applied to be a sponsor.

- - diff --git a/symposion/templates/emails/sponsor_signup/subject.txt b/symposion/templates/emails/sponsor_signup/subject.txt deleted file mode 100644 index 4e65099fba4cfc2aa9b10e4a6f90c2c7ffc93cd0..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/sponsor_signup/subject.txt +++ /dev/null @@ -1 +0,0 @@ -New Sponsor Application \ No newline at end of file diff --git a/symposion/templates/emails/teams_user_applied/message.html b/symposion/templates/emails/teams_user_applied/message.html deleted file mode 100644 index b05d6c8b6dc013c8c320cf655597ec7574d61e17..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/teams_user_applied/message.html +++ /dev/null @@ -1,12 +0,0 @@ -{% load i18n account_tags %} -{% user_display user as username %} -{% blocktrans with team_name=team team_url=team.get_absolute_url site_name=current_site.name site_url=current_site %} -

- User "{{ username }}" has applied to join {{ team_name }} on {{ site_name }}. -

- -

- To accept this application and see any other pending applications, visit the following url: - http://{{ site_url }}{{ team_url }} -

-{% endblocktrans %} diff --git a/symposion/templates/emails/teams_user_applied/subject.txt b/symposion/templates/emails/teams_user_applied/subject.txt deleted file mode 100644 index 84b2938404d35334dca879e1bdfda3596ec258a2..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/teams_user_applied/subject.txt +++ /dev/null @@ -1 +0,0 @@ -{% load i18n account_tags %}{% user_display user as username %}{% blocktrans %}{{ username}} has applied to to join "{{ team }}"{% endblocktrans %} \ No newline at end of file diff --git a/symposion/templates/emails/teams_user_invited/message.html b/symposion/templates/emails/teams_user_invited/message.html deleted file mode 100644 index b498d247a2299b6c544fa87da2c09f4b4836de66..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/teams_user_invited/message.html +++ /dev/null @@ -1,12 +0,0 @@ -{% load i18n account_tags %} - -{% blocktrans with team_name=team team_url=team.get_absolute_url site_name=current_site.name site_url=current_site %} -

- You have been invited to join {{ team_name }} on {{ site_name }}. -

- -

- To accept this invitation, visit the following url: - http://{{ site_url }}{{ team_url }} -

-{% endblocktrans %} \ No newline at end of file diff --git a/symposion/templates/emails/teams_user_invited/subject.txt b/symposion/templates/emails/teams_user_invited/subject.txt deleted file mode 100644 index 434412bcae1927cc7afa0799e6f54f83ab2603fd..0000000000000000000000000000000000000000 --- a/symposion/templates/emails/teams_user_invited/subject.txt +++ /dev/null @@ -1 +0,0 @@ -{% load i18n %}{% blocktrans %}You have been invited to join "{{ team }}"{% endblocktrans %} \ No newline at end of file diff --git a/symposion/templates/proposals/_pending_proposal_row.html b/symposion/templates/proposals/_pending_proposal_row.html deleted file mode 100644 index 2dda000b6cad89840d7c24779671adb66336d2ed..0000000000000000000000000000000000000000 --- a/symposion/templates/proposals/_pending_proposal_row.html +++ /dev/null @@ -1,42 +0,0 @@ -{% load i18n %} - - - - {{ proposal.title }} - - - {{ proposal.kind.name }} - - - {% if proposal.cancelled %} - {% trans 'Cancelled' %} - {% else %} - {% if request.user == proposal.speaker.user %} - {% if proposal.result.status == "accepted" %} - {% trans 'Accepted' %} - {% else %} - {% trans 'Submitted' %} - {% endif %} - {% else %} - {% trans 'Invited' %} - {% endif %} - {% endif %} - - - - {% if not proposal.cancelled %} -
- - {% trans 'Choose Response' %} - - - -
- {% endif %} - - diff --git a/symposion/templates/proposals/_proposal_fields.html b/symposion/templates/proposals/_proposal_fields.html deleted file mode 100644 index 49f94aa982c203628fde1559123c01e2bf44ae34..0000000000000000000000000000000000000000 --- a/symposion/templates/proposals/_proposal_fields.html +++ /dev/null @@ -1,60 +0,0 @@ -{% load i18n %} - -
-
{% trans "Submitted by" %}
-
{{ proposal.speaker }}
- -
{% trans "Track" %}
-
{{ proposal.track }} 
- -
{% trans "Audience Level" %}
-
{{ proposal.get_audience_level_display }} 
- - {% if proposal.additional_speakers.all %} -
{% trans "Additional Speakers" %}
-
- {% for speaker in proposal.additional_speakers.all %} -
  • - {% if speaker.user %} - {{ speaker.name }} <{{ speaker.email }}> - {% else %} - {{ speaker.email }} ({% trans "Invitation Sent" %}) - {% endif %} -
  • - {% endfor %} -
    - {% endif %} - -
    {% trans "Description" %}
    -
    {{ proposal.description }} 
    - -
    {% trans "Abstract" %}
    -
    {{ proposal.abstract|safe }} 
    - -
    {% trans "Notes" %}
    -
    {{ proposal.additional_notes|safe }} 
    - -
    {% trans "Speaker Bio" %}
    -
    {{ proposal.speaker.biography|safe }} 
    - -
    {% trans "Documents" %}
    -
    - {% if proposal.supporting_documents.exists %} - - {% for document in proposal.supporting_documents.all %} - - - - - {% endfor %} -
    {{ document.description }} -
    - {% csrf_token %} - -
    -
    - {% else %} - No supporting documents attached to this proposal. - {% endif %} -
    -
    diff --git a/symposion/templates/proposals/_proposal_row.html b/symposion/templates/proposals/_proposal_row.html deleted file mode 100644 index de820cfd293f4153b79f32b4d02bc68248f6b376..0000000000000000000000000000000000000000 --- a/symposion/templates/proposals/_proposal_row.html +++ /dev/null @@ -1,32 +0,0 @@ - - - {{ proposal.title }} - - - {{ proposal.kind.name }} - - - {% if proposal.cancelled %} - Cancelled - {% else %} - {% if request.user == proposal.speaker.user %} - {% if proposal.result.status == "accepted" %} - Accepted - {% else %} - Submitted - {% endif %} - {% else %} - Associated - {% endif %} - {% endif %} - - - - {% if not proposal.cancelled %} - {% if request.user == proposal.speaker.user and proposal.can_edit %} - Edit - Manage Additional Speakers - {% endif %} - {% endif %} - - diff --git a/symposion/templates/proposals/base.html b/symposion/templates/proposals/base.html deleted file mode 100644 index d6a6615bb97e98750bea7887467c6406180605b1..0000000000000000000000000000000000000000 --- a/symposion/templates/proposals/base.html +++ /dev/null @@ -1,5 +0,0 @@ -{% extends "site_base.html" %} - -{% block body_outer %} - {% block body %}{% endblock %} -{% endblock %} diff --git a/symposion/templates/proposals/document_create.html b/symposion/templates/proposals/document_create.html deleted file mode 100644 index ffdcf96fc704e77522975d670df3f817102261d5..0000000000000000000000000000000000000000 --- a/symposion/templates/proposals/document_create.html +++ /dev/null @@ -1,17 +0,0 @@ -{% extends "proposals/base.html" %} - -{% load bootstrap_tags %} - -{% block page_title %}Upload Document to '{{ proposal.title }}'{% endblock %} - -{% block body %} -
    - {% csrf_token %} -
    - {{ form|as_bootstrap }} -
    -
    - -
    -
    -{% endblock %} diff --git a/symposion/templates/proposals/proposal_cancel.html b/symposion/templates/proposals/proposal_cancel.html deleted file mode 100644 index 5e57c80a135dd82840e65b1e4b505fcb27789be6..0000000000000000000000000000000000000000 --- a/symposion/templates/proposals/proposal_cancel.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends "proposals/base.html" %} - -{% load i18n %} - -{% load bootstrap_tags %} - -{% block head_title %}{% trans 'Cancel Proposal' %}{% endblock %} - -{% block body %} -

    Cancel: {{ proposal.title }}

    - -
    - {% csrf_token %} -

    Are you sure you want to cancel {{ proposal.title }}?

    - - {% trans 'No, keep it for now' %} -
    -{% endblock %} diff --git a/symposion/templates/proposals/proposal_detail.html b/symposion/templates/proposals/proposal_detail.html deleted file mode 100644 index 7f02504c63ee0eb0fa1f477a19483bbe0eea4565..0000000000000000000000000000000000000000 --- a/symposion/templates/proposals/proposal_detail.html +++ /dev/null @@ -1,120 +0,0 @@ -{% extends "proposals/base.html" %} - -{% load i18n %} -{% load account_tags %} -{% load bootstrap_tags %} - -{% block head_title %}{{ proposal.title }}{% endblock %} - -{% block body %} -
    - {% if not proposal.cancelled %} - {% if request.user == proposal.speaker.user %} - - {% trans "Edit this proposal" %} - - - {% trans "Cancel this proposal" %} - - {% else %} - - {% trans "Remove me from this proposal" %} - - {% endif %} - {% else %} - {% trans 'Cancelled' } - {% endif %} -
    - -

    #{{ proposal.number }}: {{ proposal.title }} ({{ proposal.speaker }}, Track: {{ proposal.track }})

    - -
    - -
    -
    - {% include "proposals/_proposal_fields.html" %} -
    - {% if request.user == proposal.speaker.user %} -
    -

    {% trans 'Supporting Documents' %}

    - - {% if proposal.supporting_documents.exists %} - - {% for document in proposal.supporting_documents.all %} - - - - - {% endfor %} -
    {{ document.description }} -
    - {% csrf_token %} - -
    -
    - {% else %} -

    {% trans 'No supporting documents attached to this proposal.' %}

    - {% endif %} - {% trans 'Add Document' %} -
    - {% endif %} - - {% if message_form %} -
    - -

    {% trans 'Conversation with Reviewers' %}

    - - {% for message in proposal.messages.all %} -
    -
    {{ message.message|safe }}
    - -
    -
    - {% endfor %} - -

    {% trans 'Leave a Message' %}

    - -

    {% trans 'You can leave a message for the reviewers here.' %}

    - -
    - {% csrf_token %} -
    - {{ message_form|as_bootstrap }} -
    -
    - -
    -
    -
    - {% endif %} -
    -
    -{% endblock %} - -{% block extra_script %} - - -{% endblock extra_script %} diff --git a/symposion/templates/proposals/proposal_edit.html b/symposion/templates/proposals/proposal_edit.html deleted file mode 100644 index e9db1f6f822cfbf76bb8a48294d48653d944c777..0000000000000000000000000000000000000000 --- a/symposion/templates/proposals/proposal_edit.html +++ /dev/null @@ -1,23 +0,0 @@ -{% extends "proposals/base.html" %} - -{% load bootstrap_tags %} -{% load markitup_tags %} - -{% block head_title %}Editing {{ proposal.title }}{% endblock %} - -{% block body %} -

    Edit: {{ proposal.title }}

    - -

    Manage speakers

    - -
    - {% csrf_token %} -
    - {{ form|as_bootstrap }} -
    -
    - - Cancel -
    -
    -{% endblock %} diff --git a/symposion/templates/proposals/proposal_leave.html b/symposion/templates/proposals/proposal_leave.html deleted file mode 100644 index 4ae0cbdc4942610b78f6e9fab6fc4c44bc029ded..0000000000000000000000000000000000000000 --- a/symposion/templates/proposals/proposal_leave.html +++ /dev/null @@ -1,11 +0,0 @@ -{% extends "proposals/base.html" %} - -{% block body %} -

    Leaving {{ proposal.title }}

    - -
    - {% csrf_token %} -

    Are you sure you wish to leave as a speaker on {{ proposal.title }}?

    - -
    -{% endblock %} diff --git a/symposion/templates/proposals/proposal_speaker_manage.html b/symposion/templates/proposals/proposal_speaker_manage.html deleted file mode 100644 index f3b6324b8adada1c752337c8c1932646b7b6cb83..0000000000000000000000000000000000000000 --- a/symposion/templates/proposals/proposal_speaker_manage.html +++ /dev/null @@ -1,41 +0,0 @@ -{% extends "proposals/base.html" %} -{% load i18n %} - -{% load bootstrap_tags %} - -{% block body %} -

    {% trans 'Proposal:' %} {{ proposal.title }}

    - -

    - {% trans 'Edit proposal' %} - -

    - -

    {% trans 'Current Speakers' %}

    - - {% for speaker in speakers %} - {% if speaker.user %} -

    {{ speaker.name }} — {{ speaker.email }}

    - {% else %} -

    {{ speaker.email }} — {% trans 'pending invitation' %}

    - {% endif %} - {% endfor %} - -

    {% trans 'Add another speaker' %}

    - -
    - {% csrf_token %} - {{ add_speaker_form|as_bootstrap }} -
    - -
    -
    -{% endblock %} - -{% block extra_body %} - -{% endblock %} diff --git a/symposion/templates/proposals/proposal_submit.html b/symposion/templates/proposals/proposal_submit.html deleted file mode 100644 index 1d116ba5f0efd5785df0d04b19ba414aaf7ef4fa..0000000000000000000000000000000000000000 --- a/symposion/templates/proposals/proposal_submit.html +++ /dev/null @@ -1,22 +0,0 @@ -{% extends "proposals/base.html" %} - -{% load boxes_tags %} -{% load i18n %} - -{% block page_title %}{% trans "Submit A Proposal" %}{% endblock %} - -{% block body %} - {% box "proposal_submit" %} - - {% if kinds %} -

    Select what kind of proposal you'd like to submit:

    - - - {% else %} -

    Proposals are not currently open for submission.

    - {% endif %} -{% endblock %} diff --git a/symposion/templates/proposals/proposal_submit_kind.html b/symposion/templates/proposals/proposal_submit_kind.html deleted file mode 100644 index bd8cb92d2f055913a3986be90fc2ebfa57c21457..0000000000000000000000000000000000000000 --- a/symposion/templates/proposals/proposal_submit_kind.html +++ /dev/null @@ -1,27 +0,0 @@ -{% extends "proposals/base.html" %} - -{% load bootstrap_tags %} -{% load boxes_tags %} -{% load markitup_tags %} -{% load i18n %} - -{% block page_title %}Submit a Proposal for a {{ kind.name }}{% endblock %} - -{% block body %} - {% box "example_proposal" %} - -
    - {% csrf_token %} -
    - {{ form|as_bootstrap }} -
    -
    -

    - You will be able to edit your proposal after it has been submitted. The program committee may ask questions, provide feedback, and even suggest changes to your proposal as part of the review processes. -

    - - - -
    -
    -{% endblock %} diff --git a/symposion/templates/reviews/_result_notification_prepare_help.html b/symposion/templates/reviews/_result_notification_prepare_help.html deleted file mode 100644 index e0ef7ddff1388e018a818fc03919840aafc9c8b5..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/_result_notification_prepare_help.html +++ /dev/null @@ -1,7 +0,0 @@ - Body may include the following variables which will be substituted in the email with a value - specific to each proposal: - \ No newline at end of file diff --git a/symposion/templates/reviews/_review_table.html b/symposion/templates/reviews/_review_table.html deleted file mode 100644 index 7bb6bba23d93ec43eec139318cd4481000b6d1dd..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/_review_table.html +++ /dev/null @@ -1,37 +0,0 @@ -{% load i18n %} - - - - - - - - - - - - - - - - {% for proposal in proposals %} - - - - - - - - - - - - {% endfor %} - -
    #{% trans "Speaker / Title" %}{% trans "Category" %}{% trans "+1" %}{% trans "+0" %}{% trans "-0" %}{% trans "-1" %}
    {{ proposal.number }} - - {{ proposal.speaker }} -
    - {{ proposal.title }} -
    -
    {{ proposal.track }}{{ proposal.comment_count }}{{ proposal.plus_one }}{{ proposal.plus_zero }}{{ proposal.minus_zero }}{{ proposal.minus_one }}{{ proposal.user_vote|default:"" }}
    diff --git a/symposion/templates/reviews/access_not_permitted.html b/symposion/templates/reviews/access_not_permitted.html deleted file mode 100644 index 225d05e0490e689fce42faf7052a7e5d56d78d2a..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/access_not_permitted.html +++ /dev/null @@ -1,10 +0,0 @@ -{% extends "reviews/base.html" %} - -{% block body %} -

    Access Not Permitted

    - -

    - Sorry, you do not have permission to access this page. If you - believe this is a bug, please contact us immediately. -

    -{% endblock %} diff --git a/symposion/templates/reviews/base.html b/symposion/templates/reviews/base.html deleted file mode 100644 index c965a6cbe21d8afbe94342419858423b1d29ce23..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/base.html +++ /dev/null @@ -1,117 +0,0 @@ -{% extends "site_base.html" %} - -{% load i18n %} -{% load sitetree %} - -{% block extra_style %} - -{% endblock %} - -{% block body_class %}reviews{% endblock %} - -{% block body_outer %} -
    -
    - {% block sidebar %} - - {% endblock %} -
    -
    - {% block body %} - {% endblock %} -
    -
    -{% endblock %} - -{% block extra_script %} - - - - -{% endblock %} diff --git a/symposion/templates/reviews/result_notification.html b/symposion/templates/reviews/result_notification.html deleted file mode 100644 index 6d2ecf77f93be58cfa2d46c583175c1b169f65af..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/result_notification.html +++ /dev/null @@ -1,153 +0,0 @@ -{% extends "reviews/base.html" %} - -{% load i18n %} - -{% block extra_style %} - -{% endblock %} - -{% block body %} - - - -

    Result Notification

    - -
    - - {% csrf_token %} - -

    - Select one or more proposals (0 currently selected) -
    - then pick an email template - -
    - -

    - - - - - - - - - - - - - {% for proposal in proposals %} - - - - - - - - - {% endfor %} - -
    #{% trans "Speaker / Title" %}{% trans "Category" %}{% trans "Status" %}{% trans "Notified?" %}
    {{ proposal.number }} - - {{ proposal.speaker }} -
    - {{ proposal.title }} -
    -
    {{ proposal.track }} - {% with proposal.result.status as status %} -
    - {% if status != "undecided" %} - {{ status }} - {% endif %} -
    - {% endwith %} -
    - {% if proposal.notifications.exists %}yes{% endif %} -
    -
    -{% endblock %} - -{% block extra_script %} - -{% endblock %} diff --git a/symposion/templates/reviews/result_notification_prepare.html b/symposion/templates/reviews/result_notification_prepare.html deleted file mode 100644 index 2afa5875519557b1611b52ee0e4e0b6a578029a2..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/result_notification_prepare.html +++ /dev/null @@ -1,49 +0,0 @@ -{% extends "reviews/base.html" %} - -{% load i18n %} - -{% block body %} -

    Result Notification Prepare

    - -
    -
    -

    Proposals

    - - {% for proposal in proposals %} - - - - {% endfor %} -
    - {{ proposal.speaker }} ({{ proposal.speaker.email }}) -
    - {{ proposal.title }} -
    -
    -
    -

    Email

    - -
    - - {% csrf_token %} - - - -
    - - -
    - - -
    - - - - {% include "reviews/_result_notification_prepare_help.html" %} - - - Cancel -
    -
    - -{% endblock %} diff --git a/symposion/templates/reviews/review_admin.html b/symposion/templates/reviews/review_admin.html deleted file mode 100644 index 38efa50b99bee88c05c704c07e5d667ca32cea2c..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/review_admin.html +++ /dev/null @@ -1,56 +0,0 @@ -{% extends "reviews/base.html" %} - -{% block body %} -

    Reviewers

    - - - - - - - - - - - {% for reviewer in reviewers %} - - - - - - - - - - {% endfor %} -
    - Reviewer - - Proposals
    Reviewed - -
    - Comments - - +1 - - +0 - - −0 - - −1 -
    - {{ reviewer.get_full_name }} - - {{ reviewer.total_votes }} - - {{ reviewer.comment_count }} - - {{ reviewer.plus_one }} - - {{ reviewer.plus_zero }} - - {{ reviewer.minus_zero }} - - {{ reviewer.minus_one }} -
    -{% endblock %} diff --git a/symposion/templates/reviews/review_assignment.html b/symposion/templates/reviews/review_assignment.html deleted file mode 100644 index d450efdf86000c9cf4a8bbc4e0ff05f6042f449a..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/review_assignment.html +++ /dev/null @@ -1,32 +0,0 @@ -{% extends "reviews/base.html" %} - -{% block body %} -

    Review Assignments

    - - {% if assignments %} - - - - - - - {% for assignment in assignments %} - - - - - {% endfor %} -
    ProposalOpted outOpt out
    - - {{ assignment.proposal.title }} - - -
    - {% csrf_token %} - -
    -
    - {% else %} -

    You do not have any assignments.

    - {% endif %} -{% endblock %} diff --git a/symposion/templates/reviews/review_bulk_accept.html b/symposion/templates/reviews/review_bulk_accept.html deleted file mode 100644 index b70d7b43fbac9f4be1fa988e4dad4f7716a2fbf2..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/review_bulk_accept.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "reviews/base.html" %} - -{% load bootstrap_tags %} - -{% block body %} - -

    Bulk Accept

    -
    - {% csrf_token %} - {{ form|as_bootstrap }} -
    - -
    -
    -{% endblock %} diff --git a/symposion/templates/reviews/review_comment.html b/symposion/templates/reviews/review_comment.html deleted file mode 100644 index d7fa96a4c5e3f41a2d8e74dc5fae739587f37259..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/review_comment.html +++ /dev/null @@ -1,2 +0,0 @@ -{{ proposal }}: proposal obj -{{ form }}: comment form obj diff --git a/symposion/templates/reviews/review_detail.html b/symposion/templates/reviews/review_detail.html deleted file mode 100644 index 8072aa5c10805fbd86e3a1a84697e683161eef7b..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/review_detail.html +++ /dev/null @@ -1,198 +0,0 @@ -{% extends "reviews/base.html" %} - -{% load i18n %} -{% load markitup_tags %} -{% load bootstrap_tags %} -{% load account_tags %} - -{% block extra_style %} - - -{% endblock %} - -{% block body %} - {% if request.user.is_staff %} -
    -
    - {% csrf_token %} -
    - {% if proposal.result.status == "accepted" %} - Accepted - - {% else %} - {% if proposal.result.status == "rejected" %} - Rejected - - {% else %} - {% if proposal.result.status == "standby" %} - Standby - - {% else %} - Undecided - - {% endif %} - {% endif %} - {% endif %} -
    -
    -
    - {% endif %} - -

    #{{ proposal.number }}: {{ proposal.title }} ({{ proposal.speaker }})

    - -
    - -
    -
    - {% include "proposals/_proposal_fields.html" %} -
    -
    - -

    {% trans "Current Results" %}

    - - - - - - - - - - - - - - - - -
    +1 votes+0 votes-0 votes-1 votes{% trans "Total Responses" %} -
    {{ proposal.plus_one }}{{ proposal.plus_zero }}{{ proposal.minus_zero }}{{ proposal.minus_one }}{{ proposal.total_votes }}
    - -
    - - {% if review_form %} -
    - {% trans "Submit Review" %} -

    Enter your vote and any comment to go along with it. You can revise your vote or comment multiple times with an existing vote (your previously recorded score will be replaced during calculations). Your vote and comments are not public and will only be viewable by other reviewers.

    - {% csrf_token %} - {{ review_form|as_bootstrap }} -
    - -
    -
    - {% else %} -

    You do not have permission to vote on this proposal.

    - {% endif %} - - {% if reviews %} -
    Review Comments
    - {% for review in reviews %} -
    -
    - {{ review.vote }} -
    - {% if is_manager %} -
    -
    - {% csrf_token %} - -
    -
    - {% endif %} -
    - {% user_display review.user %} - {{ review.submitted_at|timesince }} ago
    - {{ review.comment|safe }} -
    -
    - {% endfor %} - {% endif %} - - {% markitup_media "no-jquery" %} -
    -
    - {% if review_messages %} -

    {% trans "Conversation with the submitter" %}

    - {% for message in review_messages %} -
    -
    - {% user_display message.user %} - {{ message.submitted_at|timesince }} ago
    - {{ message.message|safe }} -
    -
    - {% endfor %} -
    - {% endif %} - -
    - {% trans "Send a message" %} -

    - {% blocktrans %} - If you'd like to communicate with the submitter, use the following form and he or she will be - notified and given the opportunity to respond. - {% endblocktrans %} -

    - {% csrf_token %} - {{ message_form|as_bootstrap }} -
    - -
    -
    -
    -
    -
    -{% endblock %} - -{% block extra_script %} - - - -{% endblock %} diff --git a/symposion/templates/reviews/review_list.html b/symposion/templates/reviews/review_list.html deleted file mode 100644 index 36504604ff3c59485486df5cb858b4afacd79c63..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/review_list.html +++ /dev/null @@ -1,14 +0,0 @@ -{% extends "reviews/base.html" %} - -{% block body %} -

    {{ section }}

    - {% if reviewed == 'all_reviews' %} -

    All proposals

    - {% elif reviewed == 'user_reviewed' %} -

    Proposals you have reviewed

    - {% else %} -

    Proposals you have not yet reviewed

    - {% endif %} - - {% include "reviews/_review_table.html" %} -{% endblock %} diff --git a/symposion/templates/reviews/review_review.html b/symposion/templates/reviews/review_review.html deleted file mode 100644 index 4202d70ed679932b2acf15f629eb06da8a81cea8..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/review_review.html +++ /dev/null @@ -1,80 +0,0 @@ -{% extends "site_base.html" %} - -{% load markitup_tags %} -{% load uni_form_tags %} - -{% block body_class %}review{% endblock %} - -{% block body %} -

    Proposal Review

    - -
    -

    {{ proposal.title }}

    - -

    - {% if proposal.cancelled %} - Cancelled - {% endif %} -

    - -
    - {{ proposal.description }} -
    - -

    Type: {{ proposal.get_session_type_display }}

    - -

    Abstract

    -
    - {{ proposal.abstract_html|safe }} -
    - -

    Audience level: {{ proposal.get_audience_level_display }}

    - -

    Submitting speaker: {{ proposal.speaker }}

    {# @@@ bio? #} - - {% if proposal.additional_speakers.all %} -

    Additional speakers:

    -
      - {% for speaker in proposal.additional_speakers.all %} - {% if speaker.user %} -
    • {{ speaker.name }} — {{ speaker.email }}
    • - {% else %} -
    • {{ speaker.email }} — pending invitation
    • - {% endif %} - {% endfor %} -
    - {% endif %} - -

    Additional Notes (private from submitter)

    -
    - {{ proposal.additional_notes }} -
    -
    - - {% markitup_media %} - -

    Review

    - -
    - {% csrf_token %} -
    - {{ review_form|as_uni_form }} -
    - -
    -
    -
    - -

    Comment

    - -
    - {% csrf_token %} -
    - {{ comment_form|as_uni_form }} -
    - -
    -
    -
    - -{% endblock %} diff --git a/symposion/templates/reviews/review_stats.html b/symposion/templates/reviews/review_stats.html deleted file mode 100644 index fb613d091f5412bbdac0da9e0ee6acbf856f0a97..0000000000000000000000000000000000000000 --- a/symposion/templates/reviews/review_stats.html +++ /dev/null @@ -1,82 +0,0 @@ -{% extends "reviews/base.html" %} - -{% block body %} -

    Voting Status ({{ section_slug }})

    - - {% if key %} - - -
    - {% if key == "positive" %} -

    Positive - proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and at least one +1 and no −1s

    - {% endif %} - {% if key == "negative" %} -

    Negative - proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and at least one −1 and no +1s

    - {% endif %} - {% if key == "indifferent" %} -

    Indifferent - proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and neither a +1 or a −1

    - {% endif %} - {% if key == "controversial" %} -

    Controversial - proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and both a +1 and −1

    - {% endif %} - {% if key == "too_few" %} -

    Too Few Reviews - proposals with fewer than {{ vote_threshold }} vote{{ vote_threshold|pluralize }}

    - {% endif %} - - {% include "reviews/_review_table.html" %} - -
    - {% else %} -

    Reviews are placed into one of five buckets depending on the state of their votes:

    - -
    -
    - Positive - {{ proposals.positive|length }} -
    -
    - proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and at least one +1 and no −1s -
    -
    - Negative - {{ proposals.negative|length }} -
    -
    - proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and at least one −1 and no +1s -
    -
    - Indifferent - {{ proposals.indifferent|length }} -
    -
    - proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and neither a +1 or a −1 -
    -
    - Controversial - {{ proposals.controversial|length }} -
    -
    - proposals with at least {{ vote_threshold }} vote{{ vote_threshold|pluralize }} and both a +1 and −1 -
    -
    - Too Few Reviews - {{ proposals.too_few|length }} -
    -
    - proposals with fewer than {{ vote_threshold }} vote{{ vote_threshold|pluralize }} -
    -
    - {% endif %} - -{% endblock %} diff --git a/symposion/templates/schedule/_edit_grid.html b/symposion/templates/schedule/_edit_grid.html deleted file mode 100644 index 8b4d4146bc5057df83566e14b5b0984073cab056..0000000000000000000000000000000000000000 --- a/symposion/templates/schedule/_edit_grid.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - {% for room in timetable.rooms %} - - {% endfor %} - - - - {% for row in timetable %} - - - {% for slot in row.slots %} - - {% endfor %} - {% if forloop.last %} - - {% endif %} - - {% endfor %} - -
     {{ room.name }}
    {{ row.time|date:"h:iA" }} - {% if slot.kind.label == "talk" or slot.kind.label == "tutorial" %} - {% if not slot.content %} - + - {% else %} - {{ slot.content.title }} - {{ slot.content.speaker }} - {% endif %} - {% else %} - {% if slot.content_override.raw %} - {{ slot.content_override.rendered|safe }} - {% else %} - {{ slot.kind.label }} - {% endif %} - — edit - {% endif %} -
    diff --git a/symposion/templates/schedule/_grid.html b/symposion/templates/schedule/_grid.html deleted file mode 100644 index 5df035b0f3696d00f37bc64de3bff5a19e462175..0000000000000000000000000000000000000000 --- a/symposion/templates/schedule/_grid.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - {% for room in timetable.rooms %} - - {% endfor %} - - - - {% for row in timetable %} - - - {% for slot in row.slots %} - - {% endfor %} - {% if forloop.last %} - - {% endif %} - - {% endfor %} - -
     {{ room.name }}
    {{ row.time|date:"h:iA" }} - {% if slot.kind.label == "talk" or slot.kind.label == "tutorial" %} - {% if not slot.content %} - {% else %} - - {{ slot.content.title }} - - - {{ slot.content.speakers|join:", " }} - - {% endif %} - {% else %} - {% if slot.content_override.raw %} - {{ slot.content_override.rendered|safe }} - {% else %} - {{ slot.kind.label }} - {% endif %} - {% endif %} -
    diff --git a/symposion/templates/schedule/_slot_edit.html b/symposion/templates/schedule/_slot_edit.html deleted file mode 100644 index 81d48276c241cfaf0b7580e4edba532baba94172..0000000000000000000000000000000000000000 --- a/symposion/templates/schedule/_slot_edit.html +++ /dev/null @@ -1,14 +0,0 @@ -{% load i18n bootstrap_tags %} - diff --git a/symposion/templates/schedule/presentation_detail.html b/symposion/templates/schedule/presentation_detail.html deleted file mode 100644 index 4813f2ea5e5b123a8f6187a85bb0785fdae3a8aa..0000000000000000000000000000000000000000 --- a/symposion/templates/schedule/presentation_detail.html +++ /dev/null @@ -1,35 +0,0 @@ -{% extends "site_base.html" %} - -{% load sitetree %} - -{% block head_title %}Presentation: {{ presentation.title }}{% endblock %} - -{% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %} - -{% block body %} - {% if presentation.slot %} -

    - {{ presentation.slot.day.date|date:"l" }} - {{ presentation.slot.start}}–{{ presentation.slot.end }} -

    - {% endif %} -

    {{ presentation.title }}

    - -

    - {% for speaker in presentation.speakers %} - {{ speaker }}{% if not forloop.last %}, {% endif %}{% endfor %} -

    - -
    -
    Audience level:
    -
    {{ presentation.proposal.get_audience_level_display }}
    -
    - -

    Description

    - -
    {{ presentation.description }}
    - -

    Abstract

    - -
    {{ presentation.abstract|safe }}
    -{% endblock %} diff --git a/symposion/templates/schedule/schedule_conference.html b/symposion/templates/schedule/schedule_conference.html deleted file mode 100644 index 768bb6ab0a224dd3370221600efee5b9a0a47e14..0000000000000000000000000000000000000000 --- a/symposion/templates/schedule/schedule_conference.html +++ /dev/null @@ -1,38 +0,0 @@ -{% extends "site_base.html" %} - -{% load i18n %} -{% load bootstrap_tags %} -{% load boxes_tags %} -{% load cache %} - -{% block head_title %}Conference Schedule{% endblock %} - -{% block body_class %}full{% endblock %} - -{% block right %} -{% endblock %} - -{% block body_outer %} -
    -
    -
    -

    Conference Schedule

    - {% block breadcrumbs %}{% endblock %} -
    -
    -
    - {% box "schedule_top" %} - - {% for section in sections %} - {% cache 600 "schedule-table" section.schedule.section %} - {% for timetable in section.days %} -

    {{ section.schedule.section.name }} — {{ timetable.day.date }}

    - {% include "schedule/_grid.html" %} - {% endfor %} - {% endcache %} - {% endfor %} - - {% box "schedule_bottom" %} -
    -
    -{% endblock %} diff --git a/symposion/templates/schedule/schedule_detail.html b/symposion/templates/schedule/schedule_detail.html deleted file mode 100644 index 51f8ac51d6423eb4653dd7b37777e73b65112099..0000000000000000000000000000000000000000 --- a/symposion/templates/schedule/schedule_detail.html +++ /dev/null @@ -1,37 +0,0 @@ -{% extends "site_base.html" %} - -{% load i18n %} -{% load bootstrap_tags %} -{% load boxes_tags %} -{% load cache %} -{% load sitetree %} - -{% block head_title %}Conference Schedule{% endblock %} - -{% block body_class %}full{% endblock %} - -{% block right %} -{% endblock %} - -{% block body_outer %} -
    -
    -
    -

    {{ schedule.section }} Schedule

    - {% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %} -
    -
    -
    - {% box "schedule_top_"|add:schedule.section.name|slugify %} - - {% cache 600 "schedule-table" schedule.section %} - {% for timetable in days %} -

    {{ timetable.day.date }}

    - {% include "schedule/_grid.html" %} - {% endfor %} - {% endcache %} - - {% box "schedule_bottom" %} -
    -
    -{% endblock %} diff --git a/symposion/templates/schedule/schedule_edit.html b/symposion/templates/schedule/schedule_edit.html deleted file mode 100644 index 9b1ab864c51ab89b3dbb27e606e9434d3407be8c..0000000000000000000000000000000000000000 --- a/symposion/templates/schedule/schedule_edit.html +++ /dev/null @@ -1,63 +0,0 @@ -{% extends "site_base.html" %} - -{% load i18n %} -{% load bootstrap_tags %} - -{% block head_title %}Conference Schedule Edit{% endblock %} - -{% block body_class %}full{% endblock %} - -{% block right %} -{% endblock %} - -{% block extra_head %} - -{% endblock %} - -{% block body_outer %} -
    -
    -

    Schedule Edit

    - - {% for timetable in days %} -

    {{ timetable.day.date }}

    - {% include "schedule/_edit_grid.html" %} - {% endfor %} -
    -
    {% csrf_token %} - {{ form.as_p }} - - -
    - -
    -{% endblock %} - -{% block extra_script %} - - -{% endblock %} diff --git a/symposion/templates/schedule/schedule_list.html b/symposion/templates/schedule/schedule_list.html deleted file mode 100644 index 1547e4c7b0efd4f730b004044055acd527cad510..0000000000000000000000000000000000000000 --- a/symposion/templates/schedule/schedule_list.html +++ /dev/null @@ -1,51 +0,0 @@ -{% extends "site_base.html" %} - -{% load i18n %} -{% load cache %} -{% load sitetree %} - -{% block head_title %}Presentation Listing{% endblock %} - -{% block extra_head %} - -{% endblock %} - -{% block breadcrumbs %}{% sitetree_breadcrumbs from "main" %}{% endblock %} - -{% block body %} -

    Accepted {{ schedule.section.name }}

    - {% cache 600 "schedule-list" schedule.section.name %} - {% for presentation in presentations %} -
    -
    -

    {{ presentation.title }}

    -

    {{ presentation.speakers|join:", " }}

    - {{ presentation.description }} - {% if presentation.slot %} -

    - {{ presentation.slot.day.date|date:"l" }} - {{ presentation.slot.start}}–{{ presentation.slot.end }} - in - {{ presentation.slot.rooms|join:", " }} -

    - {% endif %} -
    -
    - {% endfor %} - {% endcache %} -{% endblock %} diff --git a/symposion/templates/sitetree/breadcrumbs.html b/symposion/templates/sitetree/breadcrumbs.html deleted file mode 100644 index 3f292f2e14fa74d9ce8266f71a6a3eef984cbfbc..0000000000000000000000000000000000000000 --- a/symposion/templates/sitetree/breadcrumbs.html +++ /dev/null @@ -1,17 +0,0 @@ -{% load sitetree %} -{% if sitetree_items %} - -{% else %} - -{% endif %} diff --git a/symposion/templates/sitetree/menu.html b/symposion/templates/sitetree/menu.html deleted file mode 100644 index 71e6ac1b8afbf1dd53f4b2f1567a71885c59aae4..0000000000000000000000000000000000000000 --- a/symposion/templates/sitetree/menu.html +++ /dev/null @@ -1,16 +0,0 @@ -{% load sitetree %} - diff --git a/symposion/templates/sitetree/submenu.html b/symposion/templates/sitetree/submenu.html deleted file mode 100644 index 9368458878c4f97af6120ecbfd6dd673870bf371..0000000000000000000000000000000000000000 --- a/symposion/templates/sitetree/submenu.html +++ /dev/null @@ -1,8 +0,0 @@ -{% load sitetree %} - diff --git a/symposion/templates/sitetree/tree.html b/symposion/templates/sitetree/tree.html deleted file mode 100644 index e7a1001f11bc93a42187763c667e36e842922c1e..0000000000000000000000000000000000000000 --- a/symposion/templates/sitetree/tree.html +++ /dev/null @@ -1,15 +0,0 @@ -{% load sitetree %} -{% if sitetree_items %} - -{% endif %} diff --git a/symposion/templates/speakers/base.html b/symposion/templates/speakers/base.html deleted file mode 100644 index 5c4b85b5dfb9c1f73f52e79dadd4fa16286761b2..0000000000000000000000000000000000000000 --- a/symposion/templates/speakers/base.html +++ /dev/null @@ -1 +0,0 @@ -{% extends "site_base_onecolumn.html" %} diff --git a/symposion/templates/speakers/speaker_create.html b/symposion/templates/speakers/speaker_create.html deleted file mode 100644 index 3d3e6a16d6f55622b77c68e6086fbc0206b8898b..0000000000000000000000000000000000000000 --- a/symposion/templates/speakers/speaker_create.html +++ /dev/null @@ -1,23 +0,0 @@ -{% extends "speakers/base.html" %} - -{% load bootstrap_tags %} -{% load i18n %} -{% load boxes_tags %} - -{% block page_title %}{% trans "Create Speaker Profile" %}{% endblock %} - -{% block body %} - {% box "speaker-profile" %} - -
    - {% csrf_token %} - {% trans "Create Speaker Profile" %} -
    - {{ form|as_bootstrap }} -
    -
    - - Cancel -
    -
    -{% endblock %} diff --git a/symposion/templates/speakers/speaker_edit.html b/symposion/templates/speakers/speaker_edit.html deleted file mode 100644 index b5d7ef1624046af6fe231324148e7a442232a3da..0000000000000000000000000000000000000000 --- a/symposion/templates/speakers/speaker_edit.html +++ /dev/null @@ -1,23 +0,0 @@ -{% extends "speakers/base.html" %} - -{% load bootstrap_tags %} -{% load i18n %} -{% load boxes_tags %} - -{% block page_title %}{% trans "Edit Speaker Profile" %}{% endblock %} - -{% block body %} - {% box "speaker-profile" %} - -
    - {% csrf_token %} - {% trans "Edit Speaker Profile" %} -
    - {{ form|as_bootstrap }} -
    -
    - - Cancel -
    -
    -{% endblock %} diff --git a/symposion/templates/speakers/speaker_profile.html b/symposion/templates/speakers/speaker_profile.html deleted file mode 100644 index 25ad65398bc43d6bdd78f2f5ce60af210ee6e107..0000000000000000000000000000000000000000 --- a/symposion/templates/speakers/speaker_profile.html +++ /dev/null @@ -1,41 +0,0 @@ -{% extends "site_base.html" %} - -{% load i18n %} -{% load thumbnail %} - - -{% block head_title %}{{ speaker.name }}{% endblock %} - -{% block body %} -
    -
    - {% if speaker.photo %} - {{ speaker.name }} - {% else %} -   - {% endif %} -
    -
    - {% if speaker.user == request.user or request.user.is_staff %} - Edit - {% endif %} -

    {{ speaker.name }}

    -
    {{ speaker.biography|safe }}
    - -

    Presentations

    - {% for presentation in presentations %} -

    {{ presentation.title }}

    - {% if presentation.slot %} -

    - {{ presentation.slot.day.date|date:"l" }} - {{ presentation.slot.start}}–{{ presentation.slot.end }} - in - {{ presentation.slot.rooms|join:", " }} -

    - {% endif %} - {% empty %} -

    No presentations. This page is only visible to staff until there is a presentation.

    - {% endfor %} -

    -
    -{% endblock %} diff --git a/symposion/templates/sponsorship/_horizontal_by_level.html b/symposion/templates/sponsorship/_horizontal_by_level.html deleted file mode 100644 index 980250532d6e249a561d6827b41ecfbf8d3fe3ac..0000000000000000000000000000000000000000 --- a/symposion/templates/sponsorship/_horizontal_by_level.html +++ /dev/null @@ -1,11 +0,0 @@ -{% load sponsorship_tags %} -{% sponsor_levels as levels %} - diff --git a/symposion/templates/sponsorship/_sponsor_link.html b/symposion/templates/sponsorship/_sponsor_link.html deleted file mode 100644 index 7b912bdbc4f1601b23314b90ea429830f12cfc37..0000000000000000000000000000000000000000 --- a/symposion/templates/sponsorship/_sponsor_link.html +++ /dev/null @@ -1,10 +0,0 @@ -{% load thumbnail %} -{% spaceless %} - - {% if dimensions %} - - {% else %} - - {% endif %} - -{% endspaceless %} diff --git a/symposion/templates/sponsorship/_vertical_by_level.html b/symposion/templates/sponsorship/_vertical_by_level.html deleted file mode 100644 index b2ed5ec45c1461d22420f6283b2d0b0cfc7ab091..0000000000000000000000000000000000000000 --- a/symposion/templates/sponsorship/_vertical_by_level.html +++ /dev/null @@ -1,13 +0,0 @@ -{% load sponsorship_tags %} -{% sponsor_levels as levels %} - diff --git a/symposion/templates/sponsorship/_wall.html b/symposion/templates/sponsorship/_wall.html deleted file mode 100644 index 7f1b9896cd30b580470dea930dd455d6eee988cd..0000000000000000000000000000000000000000 --- a/symposion/templates/sponsorship/_wall.html +++ /dev/null @@ -1,7 +0,0 @@ -{% load sponsorship_tags %} -{% sponsors as sponsors %} - diff --git a/symposion/templates/sponsorship/add.html b/symposion/templates/sponsorship/add.html deleted file mode 100644 index 4364c76b606de1a5b633309aa9cfbadb1d563a31..0000000000000000000000000000000000000000 --- a/symposion/templates/sponsorship/add.html +++ /dev/null @@ -1,22 +0,0 @@ -{% extends "site_base.html" %} - -{% load bootstrap_tags %} -{% load i18n %} -{% load boxes_tags %} - -{% block head_title %}{% trans "Add a Sponsor" %}{% endblock %} - -{% block body_class %}sponsorships{% endblock %} - -{% block body %} -
    - {% csrf_token %} - {% trans "Add a Sponsor" %} - {{ form|as_bootstrap }} -
    - - Cancel -
    -
    - -{% endblock %} diff --git a/symposion/templates/sponsorship/apply.html b/symposion/templates/sponsorship/apply.html deleted file mode 100644 index 1468d10b09515108fe22ca808741ff3698326168..0000000000000000000000000000000000000000 --- a/symposion/templates/sponsorship/apply.html +++ /dev/null @@ -1,28 +0,0 @@ -{% extends "site_base.html" %} - -{% load bootstrap_tags %} -{% load i18n %} -{% load boxes_tags %} - -{% block head_title %}{% trans "Apply to be a Sponsor" %}{% endblock %} - -{% block body_class %}sponsorships{% endblock %} - -{% block body %} - - {% box "sponsorship-apply" %} - -
    - {% csrf_token %} - {% trans "Apply to Be a Sponsor" %} - {{ form|as_bootstrap }} -
    - - Cancel -

    - By submitting this sponsor application you are agreeing to the terms and conditions. -

    -
    -
    - -{% endblock %} diff --git a/symposion/templates/sponsorship/detail.html b/symposion/templates/sponsorship/detail.html deleted file mode 100644 index d322f8b046c2fbd89a41a5e83ff1424d8dc9defc..0000000000000000000000000000000000000000 --- a/symposion/templates/sponsorship/detail.html +++ /dev/null @@ -1,40 +0,0 @@ -{% extends "site_base.html" %} - -{% load bootstrap_tags %} -{% load i18n %} - -{% block head_title %}{{ sponsor }}{% endblock %} - -{% block page_title %}{% trans "Sponsorship" %}{% endblock %} - -{% block body %} -

    {{ sponsor.name }} ({{ sponsor.level }})

    - -
    - {% csrf_token %} -
    - {{ form|as_bootstrap }} -
    - -

    {{ sponsor.level }} Sponsor Benefits

    - - {{ formset.management_form }} - {{ formset.non_form_errors }} - - {% for form in formset.forms %} -
    - -
    - {{ form }} -

    {{ form.instance.benefit.description }}

    -
    -
    - {% endfor %} - -
    - - Cancel -
    - -
    -{% endblock %} diff --git a/symposion/templates/sponsorship/list.html b/symposion/templates/sponsorship/list.html deleted file mode 100644 index 0847f92b7265b04b49f7ebf15eaa2f2ca3187593..0000000000000000000000000000000000000000 --- a/symposion/templates/sponsorship/list.html +++ /dev/null @@ -1,44 +0,0 @@ -{% extends "site_base.html" %} - -{% load sponsorship_tags %} -{% load thumbnail %} -{% load i18n %} - -{% block head_title %}{% trans "About Our Sponsors" %}{% endblock %} - -{% block body_class %}sponsorships{% endblock %} - -{% block body_outer %} -
    -
    -

    {% trans "About Our Sponsors" %}

    - Learn how to become a sponsor - - {% sponsor_levels as levels %} - {% for level in levels %} - {% if level.sponsors %} -

    {{ level.name }}

    - - {% for sponsor in level.sponsors %} - {% if sponsor.website_logo %} -
    -
    -

    - - {{ sponsor.name }} - -

    -
    -
    -
    {{ sponsor.name }}
    -

    {{ sponsor.external_url }}

    -

    {{ sponsor.listing_text|urlize|linebreaks }}

    -
    -
    - {% endif %} - {% endfor %} - {% endif %} - {% endfor %} -
    -
    -{% endblock %} diff --git a/symposion/templates/teams/team_detail.html b/symposion/templates/teams/team_detail.html deleted file mode 100644 index eb70ed40f92ca7745ce20fda260bd1f67708b796..0000000000000000000000000000000000000000 --- a/symposion/templates/teams/team_detail.html +++ /dev/null @@ -1,103 +0,0 @@ -{% extends "site_base.html" %} - -{% load bootstrap_tags %} - -{% block head_title %}{{ team.name }}{% endblock %} - -{% block body_outer %} -
    -
    -
    - {% if can_join %} -
    - {% csrf_token %} - -
    - {% endif %} - - {% if can_leave %} -
    - {% csrf_token %} - -
    - {% endif %} - - {% if can_apply %} -
    - {% csrf_token %} - -
    - {% endif %} -
    - -

    {{ team.name }}{% if state %} {{ state }}{% endif %}

    - - {% if team.description %}

    {{ team.description }}

    {% endif %} - - {% if state == "invited" %}

    You have been invited to join this team. Click join to the right to accept.

    {% endif %} - - {% if user.is_staff or state == "manager" %} - {% if team.managers %} -

    Managers

    - - {% for membership in team.managers %} - - - - - {% endfor %} -
    {{ membership.user.email }}{% if user == membership.user %} you{% endif %} -
    {% csrf_token %}
    -
    - {% endif %} - {% if team.members %} -

    Team Members

    - - {% for membership in team.members %} - - - - - {% endfor %} -
    {{ membership.user.email }}{% if user == membership.user %} you{% endif %} -
    {% csrf_token %}
    -
    - {% endif %} - {% if team.applicants and team.access == "application" %} -

    Applicants

    - - {% for membership in team.applicants %} - - - - - {% endfor %} -
    {{ membership.user.email }} -
    {% csrf_token %}
    -
    {% csrf_token %}
    -
    - {% endif %} - {% if team.invitees %} -

    Invitees

    - - {% for membership in team.invitees %} - - - - {% endfor %} -
    {{ membership.user.email }}
    - {% endif %} - {% if invite_form %} -
    - {% csrf_token %} - Invite User to Team - {{ invite_form|as_bootstrap }} -
    - -
    -
    - {% endif %} - {% endif %} -
    -
    -{% endblock %}