Changeset - 99ba4c177004
[Not reviewed]
0 3 0
Christopher Neugebauer - 8 years ago 2016-10-05 17:25:44
chrisjrn@gmail.com
1) Fixes list display
2) Lets us put links in category descriptions
3 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/registrasion/guided_registration.html
Show inline comments
...
 
@@ -18,13 +18,13 @@
 
    {% csrf_token %}
 

	
 
    {% for section in sections %}
 
      <h2>{{ section.title }}</h2>
 

	
 
      {% if section.description %}
 
        <blockquote>{{ section.description }}</blockquote>
 
        <blockquote>{{ section.description|safe }}</blockquote>
 
      {% endif %}
 

	
 
      <fieldset>
 

	
 
        {% if section.discounts %}
 
          {% include "registrasion/discount_list.html" with discounts=section.discounts %}
pinaxcon/templates/registrasion/product_category.html
Show inline comments
...
 
@@ -43,13 +43,13 @@
 
      {% include "registrasion/_items_list.html" with items=items %}
 

	
 
    {% endif %}
 

	
 

	
 
    <h2>{{ category.name }}</h2>
 
    <blockquote>{{ category.description }}</blockquote>
 
    <blockquote>{{ category.description|safe }}</blockquote>
 

	
 
    <fieldset>
 

	
 
      {% if discounts %}
 
        <h3>Discounts and Complimentary Items</h3>
 
        <div class="vertical-small"></div>
static/src/lca2017/css/app.css
Show inline comments
...
 
@@ -660,13 +660,13 @@ ol {
 
  padding: 0;
 
  /* margin: 0; */
 
}
 

	
 
ul > li,
 
ol > li {
 
  list-style-position: inside;
 
  list-style-position: outside;
 
  margin-left: 1em;
 
}
 

	
 
blockquote {
 
  margin-left: 0;
 
  padding-left: 20px;
0 comments (0 inline, 0 general)