Changeset - 5256aeeda337
[Not reviewed]
0 6 1
Tobias Schulmann - 6 years ago 2018-06-24 01:07:10
tobias.schulmann@googlemail.com
Started dashboard design
7 files changed with 114 insertions and 52 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/_form_btns.html
Show inline comments
 
new file 100644
 
<input class="btn btn-primary" type="submit" value="Save" />
 
          <a class="btn btn-default" href="{% url "dashboard" %}">Cancel</a>
...
 
\ No newline at end of file
pinaxcon/templates/_form_snippet.html
Show inline comments
...
 
@@ -2,2 +2,3 @@
 
{% load bootstrap %}
 
{% load crispy_forms_tags %}
 

	
...
 
@@ -11,5 +12,5 @@
 
<blockquote>
 
  Fields marked with <strong>*</strong> are required.
 
  Fields marked with a<br/>* are required
 
</blockquote>
 

	
 
{{ form|bootstrap_horizontal }}
 
{% crispy form %}
pinaxcon/templates/dashboard.html
Show inline comments
...
 
@@ -13,3 +13,3 @@
 
{% block header_lead %}User Dashboard{% endblock %}
 

	
 
{% block main_class %}{% endblock %}
 

	
...
 
@@ -18,2 +18,5 @@
 
{% available_categories as categories %}
 
<div class="container">
 
<h1 class="text-primary mb-5">Dashboard</h1>
 
</div>
 
{% if categories %} 
...
 
@@ -22,5 +25,3 @@
 
<div class="container">
 
        <div class="page-header">
 
  <h2>Administration</h2>
 
        </div>
 
  <div class="page-row">
...
 
@@ -172,18 +173,28 @@
 

	
 
<div class="container">
 
<div class="row">
 
    <div class="col-12">
 
      <h2>{% trans "Speaking and Miniconfs" %}</h2>
 
        <div class="card">
 
            <div class="card-header">
 
                Speaker Profile
 
              </div>
 
            <div class="card-body">
 
              <p class="card-text">
 
                  Your speaker profile is independent of your attendee profile and the details you provide here will be used during selection and to populate your speaker bio on the conference website.
 
      <h2 class="text-primary mb-5">{% trans "Speaking and Miniconfs" %}</h2>
 
    </div>
 
</div>
 
  
 
<div class="row">
 
    <div class="col-md-6 text-primary d-flex flex-column">
 
      <h3 class="text-upper">Speaker Profile</h3>
 
      {% if not user.speaker_profile %}
 
      <p>
 
        To create a speaking or miniconf proposal you must first create a speaker 
 
        profile.
 
      </p>
 
      {% endif %}
 
      <p>
 
        Your speaker profile is independent of your attendee profile and the 
 
        details you provide here will be used during selection and to populate 
 
        your speaker bio on the conference website.
 
      </p>
 
      <div class="mt-auto">
 
        {% if not user.speaker_profile %}
 
                <p class="card-text">To create a speaking or miniconf proposal you must first create a speaker profile.</p>
 
                <a href="{% url "speaker_create" %}" class="btn btn-primary">Create Profile</a>
 
        <a href="{% url "speaker_create" %}" class="btn btn-primary btn-lg" role="button">Create Profile</a>
 
        {% else %}
 
                <a class="btn btn-primary" role="button" href="{% url "speaker_edit" %}">Edit Profile</a>
 
        <a href="{% url "speaker_edit" %}" class="btn btn-primary btn-lg" role="button">Edit Profile</a>
 
        {% endif %}
...
 
@@ -192,14 +203,9 @@
 
    
 

	
 
    {% if user.speaker_profile %}
 
        <div class="col-xs-12 col-sm-6 col-lg-6">
 
          <div class="panel panel-primary">
 
            <div class="panel-heading">
 
              <h5>New Proposal</h5>
 
            </div>
 
            <div class="panel-body">
 
    <div class="col-md-6 text-primary d-flex flex-column">
 
      <h3 class="text-upper">New Proposal</h3>
 
      <p>You may use the following form to create a speaking or miniconf proposal.</p>
 
      <p>Once submitted you will be able to see the status of your proposals, as well manage the submission and co-speakers from this page</p>
 
              <a class="btn btn-lg btn-primary pull-right" role="button" href="{% url "proposal_submit" %}">New Proposal</a>
 
            </div>
 
      <div class="mt-auto">
 
        <a class="btn btn-lg btn-primary" role="button" href="{% url "proposal_submit" %}">New Proposal</a>
 
      </div>
...
 
@@ -208,3 +214,2 @@
 
</div>
 

	
 
</div>
...
 
@@ -250,16 +255,12 @@
 

	
 
  {% if review_sections %}
 
<div class="bg-primary text-secondary mt-5 pb-5">
 
<div class="container">
 
      <div class="page-header">
 
        <h2>{% trans "Reviews" %}</h2>
 
      </div>
 
      <div class="page-row">
 

	
 
{% if review_sections %}
 
<div class="row">
 
  <h2 class="col-12 my-5">{% trans "Reviews" %}</h2>
 
  {% for section in review_sections %}
 
          <div class="col-xs-12 col-sm-6 col-lg-6">
 
            <div class="panel panel-primary">
 
              <div class="panel-heading">
 
                <h5>{{ section }}</h5>
 
              </div>
 
              <div class="panel-body">
 
                <ul>
 
  <div class="col-md-6">
 
    <h3>{{ section }}</h3>
 
          <ul class="list-unstyled">
 
            <li><a href="{% url "review_section" section.section.slug %}">All</a></li>
...
 
@@ -269,3 +270,3 @@
 
          {% if section in manage_sections %}
 
                <ul>
 
          <ul class="list-unstyled">
 
            <li><a href="{% url "review_bulk_update" section.section.slug %}">Bulk Update</a></li>
...
 
@@ -277,9 +278,7 @@
 
  </div>
 
            </div>
 
          </div>
 
  {% endfor %}
 
</div>
 
    </div>
 
{% endif %}
 

	
 
</div>
 
</div>
 
{% available_teams as available_teams %}
pinaxcon/templates/site_base.html
Show inline comments
...
 
@@ -54,3 +54,3 @@
 
    
 

	
 
    <h1 class="text-primary text-upper h2 mb-5">{% block page_title %}{% endblock %}</h1>
 

	
pinaxcon/templates/symposion/speakers/speaker_create.html
Show inline comments
...
 
@@ -12,6 +12,3 @@
 
          {% include "_form_snippet.html" with form=speaker_form %}
 
          <div class="btn-group">
 
              <input class="btn btn-primary" type="submit" value="Save" />
 
              <a class="btn btn-default" href="{% url "dashboard" %}">Cancel</a>
 
          </div>
 
          {% include "_form_btns.html" %}
 
        </fieldset>
pinaxcon/templates/symposion/speakers/speaker_edit.html
Show inline comments
...
 
@@ -12,6 +12,3 @@
 
          {% include "_form_snippet.html" with form=speaker_form %}
 
          <div class="btn-group">
 
              <input class="btn btn-primary" type="submit" value="Save" />
 
              <a class="btn btn-default" href="{% url "dashboard" %}">Cancel</a>
 
          </div>
 
          {% include "_form_btns.html" %}
 
        </fieldset>
static/src/scss/app.scss
Show inline comments
...
 
@@ -43,2 +43,6 @@ body {
 

	
 
.text-upper {
 
    text-transform: uppercase;
 
}
 

	
 
.navbar-collapse {
...
 
@@ -186 +190,63 @@ main.container-fluid {
 
}
 

	
 
.btn-lg {
 
    padding: 0.8rem 4.5rem;
 
    font-size: 1rem;
 
    line-height: 1.5;
 
}
 

	
 
.btn {
 
    padding: 0.4rem 2.25rem;
 
    font-size: 1rem;
 
    border-radius: 0;
 
    text-transform: uppercase;
 
}
 

	
 
.jumbotron {
 
    border-radius: 0;
 
    background-color: rgba(204, 213, 197, 0.1);
 
    border: 1px $primary solid;
 
    color: $primary;
 
    padding: 5rem 6rem ;
 
}
 

	
 
.col-form-label, .form-check-label {
 
    font-weight: bold;
 
}
 

	
 
.form-text.text-muted {
 
    color: $primary !important;
 
    margin-bottom: 1rem;
 
}
 

	
 
fieldset {
 
    blockquote {
 
        font-size: 80%;
 
    }
 
}
 

	
 
.form-control {
 
    border-radius: 0;
 
    border: 2px $primary solid;
 

	
 
    &:focus {
 
        border: 2px $primary solid;
 
    }
 
}
 

	
 
label.form-check-label {
 
    display: flex;
 
    align-items: center
 
}
 

	
 
h3 {
 
    text-transform: uppercase;
 
}
 

	
 

	
 
main {
 
    a {
 
        color: #f5843e;
 
        font-weight: 600;
 
    }
 
}
0 comments (0 inline, 0 general)