Skip to content
GitLab
    • Explore Projects Groups Snippets
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • ckan theme ckan theme
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
    • Requirements
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
    • Test Cases
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Code review
    • Insights
    • Issue
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Rosanny Sihombing
  • ckan themeckan theme
  • Merge requests
  • !10
An error occurred while fetching the assigned milestone of the selected merge_request.

Cosmetic updates

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged Rosanny Sihombing requested to merge dev into testing 3 years ago
  • Overview 0
  • Commits 1
  • Pipelines 0
  • Changes 15
  • Loading
  • You're only seeing other activity in the feed. To add a comment, switch to one of the following options.
Please register or sign in to reply
Compare
  • testing (base)

and
  • latest version
    d3ec3a34
    1 commit, 3 years ago

15 files
+ 200
- 2

    Preferences

    File browser
    Compare changes
ckanext-theme_hft/‎ckanext/…/templates‎
gr‎oup‎
read_ba‎se.html‎ +7 -0
ho‎me‎
snip‎pets‎
searc‎h.html‎ +14 -0
stats‎.html‎ +16 -0
layout‎2.html‎ +6 -0
pac‎kage‎
snip‎pets‎
package_basi‎c_fields.html‎ +8 -0
package_metada‎ta_fields.html‎ +14 -0
resource_‎form.html‎ +8 -0
group_l‎ist.html‎ +8 -0
read_ba‎se.html‎ +7 -0
snip‎pets‎
activity_s‎tream.html‎ +19 -0
facet_l‎ist.html‎ +17 -0
most_popular‎_groups.html‎ +29 -0
us‎er‎
dashboa‎rd.html‎ +12 -0
read_ba‎se.html‎ +30 -0
heade‎r.html‎ +5 -2
ckanext-theme_hft/ckanext/theme_hft/templates/group/read_base.html 0 → 100644
+ 7
- 0
  • View file @ d3ec3a34

  • Edit in single-file editor

  • Open in Web IDE

 
{% ckan_extends %}
 
 
{# Remove Activity Stream #}
 
{% block content_primary_nav %}
 
{{ h.build_nav_icon(group_type + '.read', _('Datasets'), id=group_dict.name, icon='sitemap') }}
 
{{ h.build_nav_icon(group_type + '.about', _('About'), id=group_dict.name, icon='info-circle') }}
 
{% endblock %}
ckanext-theme_hft/ckanext/theme_hft/templates/home/snippets/search.html 0 → 100644
+ 14
- 0
  • View file @ d3ec3a34

  • Edit in single-file editor

  • Open in Web IDE

 
{% set placeholder = _('E.g. environment') %}
 
 
<div class="module module-search module-narrow module-shallow box">
 
<form class="module-content search-form" method="get" action="{% url_for 'dataset.search' %}">
 
<h3 class="heading">{{ _("Search data") }}</h3>
 
<div class="search-input form-group search-giant">
 
<input aria-label="{% block header_site_search_label %}{{ _('Search datasets') }}{% endblock %}" id="field-main-search" type="text" class="form-control" name="q" value="" autocomplete="off" placeholder="{% block search_placeholder %}{{ placeholder }}{% endblock %}" />
 
<button type="submit" aria-labelledby="search-label">
 
<i class="fa fa-search"></i>
 
<span class="sr-only" id="search-label">{{ _('Search') }}</span>
 
</button>
 
</div>
 
</form>
 
</div>
ckanext-theme_hft/ckanext/theme_hft/templates/home/snippets/stats.html 0 → 100644
+ 16
- 0
  • View file @ d3ec3a34

  • Edit in single-file editor

  • Open in Web IDE

 
{% ckan_extends %}
 
 
{% block stats_group %}
 
<li>
 
<a href="{{ h.url_for('dataset.search') }}">
 
<strong>{{ h.SI_number_span(stats.dataset_count) }}</strong>
 
{{ _('dataset') if stats.dataset_count == 1 else _('datasets') }}
 
</a>
 
</li>
 
<li>
 
<a href="{{ h.url_for(controller='group', action='index') }}">
 
<strong>{{ h.SI_number_span(stats.group_count) }}</strong>
 
{{ _('group') if stats.group_count == 1 else _('groups') }}
 
</a>
 
</li>
 
{% endblock %}
ckanext-theme_hft/ckanext/theme_hft/templates/home/layout2.html 0 → 100644
+ 6
- 0
  • View file @ d3ec3a34

  • Edit in single-file editor

  • Open in Web IDE

 
{% ckan_extends %}
 
 
{% block featured_group %}
 
{% snippet 'snippets/most_popular_groups.html',
 
groups=h.hft_theme_most_popular_groups() %}
 
{% endblock %}
ckanext-theme_hft/ckanext/theme_hft/templates/package/snippets/package_basic_fields.html 0 → 100644
+ 8
- 0
  • View file @ d3ec3a34

  • Edit in single-file editor

  • Open in Web IDE

 
{% ckan_extends %}
 
 
{% block package_basic_fields_title %}
 
{{ form.input('title', id='field-title', label=_('Title'), placeholder=_('eg. A descriptive title'), value=data.title, error=errors.title, classes=['control-full', 'control-large'], attrs={'data-module': 'slug-preview-target', 'class': 'form-control'}, is_required=true) }}
 
{% endblock %}
 
 
{% block package_basic_fields_tags %}
 
{% endblock %}
0 Assignees
None
Assign to
0 Reviewers
None
Request review from
Labels
0
None
0
None
    Assign labels
  • Manage project labels

Milestone
No milestone
None
None
Time tracking
No estimate or time spent
Lock merge request
Unlocked
0
0 participants
Reference:
Source branch: dev

Menu

Explore Projects Groups Snippets

Dies ist die Gitlab-Instanz des Transferportals der Hochschule für Technik Stuttgart. Hier geht es zurück zum Portal