Update for shirts
This commit is contained in:
parent
84d2931921
commit
77115814f0
4 changed files with 2204 additions and 1275 deletions
|
@ -118,5 +118,20 @@
|
|||
1
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"model": "flatpages.flatpage",
|
||||
"pk": 9,
|
||||
"fields": {
|
||||
"url": "/attend/shirts/",
|
||||
"title": "Shirts -- LCA2019",
|
||||
"content": "",
|
||||
"enable_comments": false,
|
||||
"template_name": "flatpages/shirts.html",
|
||||
"registration_required": false,
|
||||
"sites": [
|
||||
1
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -374,7 +374,7 @@
|
|||
"access_restricted": false,
|
||||
"access_perm_type": 1,
|
||||
"parent": 37,
|
||||
"sort_order": 38,
|
||||
"sort_order": 39,
|
||||
"access_permissions": []
|
||||
}
|
||||
},
|
||||
|
@ -398,7 +398,7 @@
|
|||
"access_restricted": false,
|
||||
"access_perm_type": 1,
|
||||
"parent": 37,
|
||||
"sort_order": 36,
|
||||
"sort_order": 38,
|
||||
"access_permissions": []
|
||||
}
|
||||
},
|
||||
|
@ -593,5 +593,29 @@
|
|||
"sort_order": 30,
|
||||
"access_permissions": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"model": "sitetree.treeitem",
|
||||
"pk": 39,
|
||||
"fields": {
|
||||
"title": "Shirts",
|
||||
"hint": "",
|
||||
"url": "/attend/shirts/",
|
||||
"urlaspattern": false,
|
||||
"tree": 1,
|
||||
"hidden": false,
|
||||
"alias": null,
|
||||
"description": "",
|
||||
"inmenu": true,
|
||||
"inbreadcrumbs": true,
|
||||
"insitetree": true,
|
||||
"access_loggedin": false,
|
||||
"access_guest": false,
|
||||
"access_restricted": false,
|
||||
"access_perm_type": 1,
|
||||
"parent": 37,
|
||||
"sort_order": 36,
|
||||
"access_permissions": []
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
95
pinaxcon/templates/flatpages/shirts.html
Normal file
95
pinaxcon/templates/flatpages/shirts.html
Normal file
|
@ -0,0 +1,95 @@
|
|||
{% extends "site_base.html" %}
|
||||
|
||||
{% block head_title %}{{ flatpage.title }}{% endblock head_title %}
|
||||
{% block body_class %}text-primary{% endblock body_class %}
|
||||
|
||||
|
||||
{% block content %}
|
||||
<div class="row">
|
||||
<div class="col-md-1"></div>
|
||||
<div class="col-12 col-md-10 content text-page">
|
||||
<h1>Shirts</h1>
|
||||
<p>There are two options available for our linux.conf.au 2019 conference shirts.</p>
|
||||
|
||||
<h2>Women's Silhouette Tee</h2>
|
||||
<p>Our women's option is the <a target="_blank" rel="noopener noreferrer" href="https://www.auroraclothing.co.nz/product/t201-silhouette-tee">Cloke Silhouette Tee</a>.</p>
|
||||
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Size</th>
|
||||
<th>8</th>
|
||||
<th>10</th>
|
||||
<th>12</th>
|
||||
<th>14</th>
|
||||
<th>16</th>
|
||||
<th>18</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Chest</th>
|
||||
<td>43</td>
|
||||
<td>46</td>
|
||||
<td>49</td>
|
||||
<td>52</td>
|
||||
<td>55</td>
|
||||
<td>58</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Length</th>
|
||||
<td>65</td>
|
||||
<td>66</td>
|
||||
<td>67</td>
|
||||
<td>68</td>
|
||||
<td>69</td>
|
||||
<td>70</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<h2>Men's Outline Tee</h2>
|
||||
<p>Our men's option is the <a target="_blank" rel="noopener noreferrer" href="https://www.auroraclothing.co.nz/product/t101-outline-tee/">Cloke Outline Tee</a>.</p>
|
||||
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Size</th>
|
||||
<th>S</th>
|
||||
<th>M</th>
|
||||
<th>L</th>
|
||||
<th>XL</th>
|
||||
<th>XXL</th>
|
||||
<th>3XL</th>
|
||||
<th>4XL</th>
|
||||
<th>5XL</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Chest</th>
|
||||
<td>48</td>
|
||||
<td>52</td>
|
||||
<td>56</td>
|
||||
<td>60</td>
|
||||
<td>64</td>
|
||||
<td>68</td>
|
||||
<td>..</td>
|
||||
<td>76</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Length</th>
|
||||
<td>72</td>
|
||||
<td>75</td>
|
||||
<td>78</td>
|
||||
<td>81</td>
|
||||
<td>84</td>
|
||||
<td>87</td>
|
||||
<td>..</td>
|
||||
<td>93</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
Loading…
Reference in a new issue