Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/footer links #737

Merged
merged 4 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions app/views/application/_footer.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-5 col-md-5 col-lg-4 footer-left-col">
<a href="http://community.coopdevs.org/" target="_blank"><%= t('layouts.application.help') %></a>
<a href="https://adbdt.org/contacta/" target="_blank"><%= t('layouts.application.help') %></a>
<%= link_to t('application.terms_conditions'), tnc_path, data: { target: '#modal', toggle: 'modal' } %>
</div>
<div class="col-xs-12 col-sm-2 col-md-2 col-lg-4 footer-center-col">
<%= render 'application/menus/language_switcher' %>
</div>
<div class="col-xs-12 col-sm-5 col-md-5 col-lg-4 footer-right-col">
<a href="https://twitter.com/timeoverflow" target="_blank">Twitter</a>
markets marked this conversation as resolved.
Show resolved Hide resolved
<a href="https://github.com/coopdevs/timeoverflow" target="_blank">Github</a>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/views/pages/about.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"pages.about.empower-text-1",
showmap_link: link_to(
t("pages.about.empower-showmap"),
"http://www.bdtonline.org",
"https://adbdt.org/unete-a-un-banco-de-tiempo/",
{ title: t("pages.about.empower-showmap-title") }
)
).html_safe %></p>
Expand Down
21 changes: 9 additions & 12 deletions db/structure.sql
Original file line number Diff line number Diff line change
@@ -1,24 +1,19 @@
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;

--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
-- Name: public; Type: SCHEMA; Schema: -; Owner: -
--

CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;


--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
--

COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
-- *not* creating schema, since initdb creates it


--
Expand Down Expand Up @@ -82,7 +77,7 @@ CREATE FUNCTION public.posts_trigger() RETURNS trigger

SET default_tablespace = '';

SET default_with_oids = false;
SET default_table_access_method = heap;

--
-- Name: accounts; Type: TABLE; Schema: public; Owner: -
Expand Down Expand Up @@ -1218,7 +1213,7 @@ CREATE UNIQUE INDEX unique_schema_migrations ON public.schema_migrations USING b
-- Name: posts tsvectorupdate; Type: TRIGGER; Schema: public; Owner: -
--

CREATE TRIGGER tsvectorupdate BEFORE INSERT OR UPDATE ON public.posts FOR EACH ROW EXECUTE PROCEDURE public.posts_trigger();
CREATE TRIGGER tsvectorupdate BEFORE INSERT OR UPDATE ON public.posts FOR EACH ROW EXECUTE FUNCTION public.posts_trigger();


--
Expand Down Expand Up @@ -1305,7 +1300,7 @@ ALTER TABLE ONLY public.active_storage_attachments
-- PostgreSQL database dump complete
--

SET search_path TO "$user",public;
SET search_path TO "$user", public;

INSERT INTO "schema_migrations" (version) VALUES
('1'),
Expand Down Expand Up @@ -1378,3 +1373,5 @@ INSERT INTO "schema_migrations" (version) VALUES
('20230401114456'),
('20231120164231'),
('20231120164346');


markets marked this conversation as resolved.
Show resolved Hide resolved
Loading