I was configuring the module to be able to see it without being in super user mode but when updating those changes I remove the usper user mode and re-enter and it does not show me the module and in the terminal it sends me an error in my xml file
attached code
``` <record id="view_presupuesto_form" model="ir.ui.view">
<field name="name">Vista formulario de presupuesto de peliculas</field>
<field name="model">presupuesto</field>
<field name="arch" type="xml">
<form>
<header>
<button string="Aprobar" type="object" name="aprobar_presupuesto" class="oe_highlight" states="borrador"/>
<button string="Cancelar" type="object" name="cancelar_presupuesto" states="borrador,aprobado"/>
<field name="state" widget="statusbar" statusbar_visible="borrador,aprobado"/>
</header>
<div class="alert alert-info" role="alert" style="margin-bottom: 0" attrs="{'invisible': [('dsc_clasificacion', '=', False)]}">
<field name="dsc_clasificacion" readonly="1" force_save="1" />
</div>
<sheet>
<widget name="web_ribbon" title="Archivado" bg_color="bg-danger" attrs="{'invisible': [('active', '=', True)]}"/>
<field name="image_1920" widget="image" class="oe_avatar"
options="{'preview_image': 'image_128', 'size': ['',128]}"/>
<div class="oe_tittle">
<div class="o_row">
<field name="active" invisible="1"/>
<h1 styly="display: flex;">
<field name="name"
placeholder="Nombre de la pelicula"
required="1"
default_focus="1" class="oe_inline"/>
<field name="puntuacion" widget="percentpie" string=" " style="padding-left: 10px" class="oe_inline"/>
<field name="puntuacion2" placeholder="Puntuacion de usuario"
class="oe_edit_only oe_inline"/>
</h1>
</div>
<div class="o_row" style="display: flex;">
<field name="Clasificacion" required="1"/>
<span class="fa fa-circle" attrs="{'invisible': [('Clasificacion', '=', False), ('fch_estreno', '=', False)]}"
style="font-size: 8px; padding:5px;"/>
<field name="fch_estreno" />
</div>
<div class="o_row">
<field name="genero_ids" widget="many2many_tags" style="display: flex;"/>
</div>
</div>
<group string="Datos principales" style="margin-top: -10px;">
<field name="vista_general" placeholder="Vista general..." attrs="{'readonly': [('state','!=', 'borrador')]}"/>
<group>
<field name="director_id" domain="[('category_id', 'in', [categoria_director_id])]"
options="{'no_create': True, 'no_open': True}"/>
<field name="categoria_director_id" invisible="1"/>
<field name="link_trailer" widget="url"/>
</group>
<group>
<field name="es_libro" widget="boolean_toggle"/>
<field name="libro" filename="libro_filename" attrs="{'invisible': [('es_libro', '=', False)]}"/>
<field name="libro_filename" invisible="1"/>
</group>
</group>
<separator string="Detalles"/>
<notebook>
<page string="Presupuesto">
<group>
<group>
<field name="num_presupuesto" readonly="1"/>
<field name="fch_creacion" readonly="1"/>
<field name="fch_aprobado" readonly="1"/>
</group>
<group>
<field name="currency_id"/>
<field name="campos_ocultos" widget="boolean_toggle"/>
</group>
</group>
<field name="detalle_ids">
<tree editable="bottom">
<control>
<create name="add_product_control" string="Agregar recurso cinematografico"/>
</control>
<field name="imagen" widget="image" options="{'size': [80,50]}" optional="show"/>
<field name="name"/>
<field name="descripcion" optional="show"/>
<field name="contacto_id" attrs="{'column_invisible': [('parent.campos_ocultos', '=', False)]}"/>
<field name="cantidad"/>
<field name="precio"/>
<field name="importe" readonly="1" force_save="1"/>
<field name="currency_id" invisible="1"/>
</tree>
</field>
<group clo="6" class="mt-2 mt-md-0">
<group colspan="4">
<field name="terminos" nolabel="1" placeholder="Terminos y condiciones..."/>
</group>
<group class="oe_subtotal_footer oe_right" clspan="2">
<field name="base" widget="monetary" options="{'currency_field': 'currency_id'}"/>
<field name="impuestos"/>
<div class="oe_subtotal_footer_separator oe_line o_td_label">
<laber for="total"/>
</div>
<field name="total" nolabel="1" class="oe_subtotal_footer_separator" widget="monetary" options="{'currency_field': 'currency_id'}"/>
</group>
<div class="oe_clear"/>
</group>
</page>
<page string="Otra informacion">
<group>
<field name="actor_ids" domain="[('category_id', 'in', [categoria_actor_id])]"
options="{'no_create': True, 'no_open': True}"
widget="many2many_tags"/>
<field name="categoria_actor_id" invisible="1"/>
<field name="opinion"/>
</group>
<group>
</group>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
<record id="view_presupuesto_tree" model="ir.ui.view">
<field name="name">Vista lista de presupuesto</field>
<field name="model">presupuesto</field>
<field name="arch" type="xml">
<tree decoration-danger="state == 'cancelar'" decoration-success="state == 'aprobado'">
<field name="name"/>
<field name="num_presupuesto"/>
<field name="fch_creacion"/>
<field name="total" sum="importe_total"/>
<field name="state" widget="badge" decoration-success="state == 'aprobado'" decoration-danger="state == 'cancelar'"/>
</tree>
</field>
</record>
<record id="view_presupuesto_kanban" model="ir.ui.view">
<field name="name">Vista kanban del modelo presupuesto</field>
<field name="model">presupuesto</field>
<field name="arch" type="xml">
<kanban>
<field name="id"/>
<field name="currency_id"/>
<templates>
<t t-name="kanban-box">
<div class="oe_kanban_global_click">
<div class="o_kanban_image">
<img t-att-src="kanban_image('presupuesto', 'image_128', record.id.raw_value)" class="o_image_64_contain"/>
</div>
<div class="oe_kanban_details">
<strong class="oe_kanban_record_tittle">
<field name="name"/>
</strong>
[<field name="Clasificacion"/>]
</div>
<div>
<field name="genero_ids"/>
</div>
<div>
<field name="total" widget="monetary" options="{'currency_field': 'currency_id', 'field:digits': True}"/>
</div>
</div>
</t>
</templates>
</kanban>
</field>
</record>```
I've already been reviewing it and I can't find the error and in the terminal it says that there are things without context and apart from that there is already an attribute with the same name that is already instantiated or that already has things inside how can I correct those errors that it gives me no I know if it is because of these errors that it does not let me see the module without being in super user mode because I have the csv file well configured and it has permissions to be able to see it without being in super user mode
Attached image of the terminal
that is the error that it sends and according to me I would not have to send those errors that I would have to do or how I could correct it and I do not know if that is why it does not allow me to see the module without being in super user