Here is the code
<record model="ir.ui.view" id="fleetwiki_record_form_view" >
<field name="name">fleetwiki.record.form.view</field>
<field name="model">fleetwiki.record</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Record">
<field name="name" select="1"/>
<field name="dateentered"/>
<field name="classification_id"/>
<field name="ip"/>
<field name="location"/>
<field name="os"/>
<field name="user"/>
<field name="password"/>
<field name="info"/>
</form>
</field>
</record>
Odoo reads the custom views and then the form is all the fields unformatted without labels?
Thank you, I was able to get it working now.