1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
{% extends 'base.html' %}
{% load expense_total%}
{% load typogrify_tags %}
{% block pagetitle %}Luxagraf: Expenses{% endblock %}
{% block metadescription %}Think is costs a lot to drive around North America in a vintage Suburban and Yellowstone trailer? Well, judge for yourself, here's how much is costs us.{% endblock %}
{% block primary %}
<main role="main">
<article class="post--article">
<header class="post--header">
<h1 class="p-name entry-title post--title">Yellowstone/Suburban Trip Costs</h1>
<time class="dt-updated post--date" datetime="{%now 'c'%}">Last updated: {%now "F"%} <span>{%now "j, Y"%}</span></time>
</header>
<div id="article" class="post--body post--body--single expense-wrapper">
<p>We're extremely fortunate to be able to do this. We afford it because we saved for a long time and I continue to work on the road. At the same time, people are usually surprised at how little it costs to live this way. When we were plainning this trip the people who posted their finances were invaluably helpful for calculating how much we needed to make this work so in the spirit of (hopefully, maybe) inspiring someone else to get out there, here is a rough breakdown of costs.</p>
<h2>Upfront Costs</h2>
<table class="expense upfront">
<caption>Initial Investments</caption>
<thead>
<tr>
<td>Category</td>
<td>Amount</td>
</tr>
</thead>
<tbody>
<tr class="row odd">
<td>1969 Yellowstone Trailer</td>
<td class="cat-value">$900.00 </td>
</tr>
<tr class="row even">
<td>1969 Chevy Suburban</td>
<td class="cat-value">??</td>
</tr>
<tr class="row odd">
<td>Yellowstone rebuild</td>
<td class="cat-value">$2020.00</td>
</tr>
<tr class="row even">
<td>Suburban rehab</td>
<td class="cat-value">$300.00 </td>
</tr>
<tr class="row odd">
<td>Inverter</td>
<td class="cat-value"></td>
</tr>
<tr class="row even">
<td>Solar setup</td>
<td class="cat-value">$81.74 </td>
</tr>
<tr class="row odd">
<td>DMV (taxes, title, etc)</td>
<td class="cat-value"></td>
</tr>
<tr class="row even">
<td>Insurance (1year)</td>
<td class="cat-value"></td>
</tr>
<tr class="total">
<td>Total</td>
<td>$???</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2"><small>*Some expense</small></td>
</tr>
</tfoot>
</table>
<p>The intial investment is nothing to sneeze at and does not include the hundreds of hours of sweat equity invested as well, but then, I like to restore things and I take pride in doing it myself. Of course when I bought the trailer a few years ago we were $30K in consumer debt and it was arguably a very dumb purchase, but sometimes you have to gamble on a hunch. Or at least I do.</p>
<p>Practically speaking, do not buy an old trailer if you do not want to fix it up yourself. Hiring someone to do the work for you will be far more expensive than buying an already restored model. Also, restoration is not for the feint of heart. You can do it, even if you have no clue how (I didn't) but it does have its overwhelming/discouraging moments so be prepared for that. I wrote several articles about the process if you're interested. If that's not your bag you might be able to get a nicer rig for not much more money.</p>
<p class="end">Here's how much we've spent each month we've spent on the road since we left in June 2016.</p>
<h2>Monthly Expenses</h2>
{% regroup object_list by date.month as expenses_by_month %}{% for expenses in expenses_by_month %}
<table class="expense">
<caption>{{ expenses.list.0.date|date:"F Y" }}</caption>
<thead>
<tr>
<td>Category</td>
<td>Amount</td>
</tr>
</thead>
<tbody>
{% regroup expenses.list|dictsort:"category" by category as category_list %}
{% for cat in categories %}
<tr class="row {%cycle 'odd' 'even' %}">
<td>{{cat.1}} </td>
<td class="cat-value">{% for clist in category_list %}{%if clist.grouper == cat.0%}${{clist.list|cat_total}} {%endif %}{%endfor%}</td>
</tr>
{% endfor %}
<tr class="total">
<td>Total</td>
<td>${{category_list|expense_total}}</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">{% for clist in category_list %}{% for item in clist.list %}{% if item.notes %}<small>*{{item.notes|safe}}</small>{%endif %}{%endfor%}{%endfor%}</td>
</tr>
</tfoot>
</table>
{% endfor %}
</div>
</article>
</main>
{%endblock%}
{% block js %}
<script type="text/javascript">
window.onload = function() {
//delay loading
zchk = document.getElementsByClassName("cat-value");
for(var i=0; i<zchk.length; i++) {
if (zchk[i].innerHTML == "") {
zchk[i].innerHTML = "–";
};
}
}
</script>
{%endblock%}
|